Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Apr 2, 2021
1 parent 46f5c94 commit 3ce88dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/utils/kindOf.js
Expand Up @@ -16,7 +16,8 @@ export function kindOf(val) {
case 'function': {
return type
}
default: break;
default:
break
}

if (Array.isArray(val)) return 'array'
Expand All @@ -32,7 +33,8 @@ export function kindOf(val) {
case 'Map':
case 'Set':
return constructorName
default: break;
default:
break
}

// other
Expand Down

0 comments on commit 3ce88dd

Please sign in to comment.