@cognigy/rest-api-client
Version:
Cognigy REST-Client
7 lines • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.strictUriEncode = void 0;
const strictUriEncode = (string) => encodeURIComponent(string)
.replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);
exports.strictUriEncode = strictUriEncode;
//# sourceMappingURL=strictUriEncode.js.map