Skip to content

Commit e9abb18

Browse files
Ritesh ShuklaRitesh Shukla
authored andcommitted
Fix Lint for prettier
1 parent acfee0d commit e9abb18

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/react-native/Libraries/Blob/URLSearchParams.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,7 @@ export class URLSearchParams {
7070
}
7171

7272
values(name: string): Iterator<string> {
73-
function* generateValues(
74-
params: Map<string, string[]>,
75-
): Iterator<string> {
73+
function* generateValues(params: Map<string, string[]>): Iterator<string> {
7674
for (const valueArray of params.values()) {
7775
for (const value of valueArray) {
7876
yield value;

0 commit comments

Comments
 (0)