Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
Former-commit-id: ccc8a9d
  • Loading branch information
markerikson committed Apr 2, 2021
1 parent 0c0a1a2 commit ebc2649
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 ebc2649

Please sign in to comment.