-
Notifications
You must be signed in to change notification settings - Fork 406
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* perf(store): replace `instanceof Function` with `typeof` `typeof` avoids prototype chain checks and type coercion, which is faster: ``` instanceof Function x 104,665,819 ops/sec ±4.90% (44 runs sampled) typeof function x 169,867,932 ops/sec ±6.42% (55 runs sampled) ``` * chore: update CHANGELOG.md
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters