Initial
This commit is contained in:
5
resources/app/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js
generated
vendored
Normal file
5
resources/app/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export function extendedEncodeURIComponent(str) {
|
||||
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
|
||||
return "%" + c.charCodeAt(0).toString(16).toUpperCase();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user