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 e9abb18 commit 40f277cCopy full SHA for 40f277c
packages/react-native/Libraries/Blob/URLSearchParams.js
@@ -20,7 +20,9 @@ export class URLSearchParams {
20
.replace(/^\?/, '')
21
.split('&')
22
.forEach(pair => {
23
- if (!pair) return;
+ if (!pair) {
24
+ return;
25
+ }
26
const [key, value] = pair.split('=').map(decodeURIComponent);
27
this.append(key, value);
28
});
0 commit comments