Skip to content

Commit

Permalink
fix(javascript): node 14 compatibility (#3897)
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts authored Oct 7, 2024
1 parent 6ac345b commit 3d5828d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function serializeQueryParameters(parameters: QueryParameters): string {
Object.prototype.toString.call(parameters[key]) === '[object Array]'
? parameters[key].join(',')
: parameters[key],
).replaceAll('+', '%20')}`,
).replace(/\+/g, '%20')}`,
)
.join('&');
}
Expand Down

0 comments on commit 3d5828d

Please sign in to comment.