docker/vizier-auth/strict-uri-encode-index.js
2020-02-24 14:49:33 -05:00

7 lines
186 B
JavaScript

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