Skip to content

Commit 3ce88dd

Browse files
committed
Formatting
1 parent 46f5c94 commit 3ce88dd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/utils/kindOf.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ export function kindOf(val) {
1616
case 'function': {
1717
return type
1818
}
19-
default: break;
19+
default:
20+
break
2021
}
2122

2223
if (Array.isArray(val)) return 'array'
@@ -32,7 +33,8 @@ export function kindOf(val) {
3233
case 'Map':
3334
case 'Set':
3435
return constructorName
35-
default: break;
36+
default:
37+
break
3638
}
3739

3840
// other

0 commit comments

Comments
 (0)