Skip to content

Commit 060cf02

Browse files
author
Kai Guo
committed
Fix lint error
1 parent df9aa77 commit 060cf02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AsyncStorage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ if (!RCTAsyncStorage.multiMerge) {
400400
}
401401

402402
function convertErrors(errs): ?$ReadOnlyArray<?Error> {
403-
if (!errs || (Array.isArray(errs) && errs.length===0)) {
403+
if (!errs || (Array.isArray(errs) && errs.length === 0)) {
404404
return null;
405405
}
406406
return (Array.isArray(errs) ? errs : [errs]).map(e => convertError(e));

0 commit comments

Comments
 (0)