Skip to content

Commit 3cf8a86

Browse files
committed
Fix linting issue
1 parent de4d5fa commit 3cf8a86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/flattenInput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function flattenInput () {
66
for (var j = 0; j < input.length; j++) {
77
res = res.concat(flattenInput(input[j]))
88
}
9-
} else if (typeof URL !== "undefined" && input instanceof URL) {
9+
} else if (typeof URL !== 'undefined' && input instanceof URL) {
1010
res = res.concat(input.toJSON())
1111
} else if (input instanceof Object) {
1212
var keys = Object.keys(input)

0 commit comments

Comments
 (0)