SAP-BTP-Spielwiese/app1/node_modules/strict-uri-encode/index.js

3 lines
138 B
JavaScript
Raw Permalink Normal View History

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