summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/strict-uri-encode/index.js
blob: affabef0c826ef90c58699ed95bfc00becd3c74d (plain)
1
2
'use strict';
module.exports = str => encodeURIComponent(str).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);