We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c417c2f commit ee95a85Copy full SHA for ee95a85
packages/smithy-client/src/extended-encode-uri-component.ts
@@ -5,5 +5,5 @@
5
export function extendedEncodeURIComponent(str: string): string {
6
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
7
return "%" + c.charCodeAt(0).toString(16);
8
- }).replace(/%20/g, "+");
+ });
9
}
0 commit comments