GT2/Ejectable/node_modules/strict-uri-encode/index.js
2021-08-16 00:14:59 +00:00

2 lines
138 B
JavaScript

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