GT2/Ejectable/node_modules/strict-uri-encode/index.js

3 lines
138 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
'use strict';
module.exports = str => encodeURIComponent(str).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);