kind-of
Last updated
Was this helpful?
Last updated
Was this helpful?
Get the native type of a value.
Install with :
Install with
es5, browser and es6 ready
In 7 out of 8 cases, this library is 2x-10x faster than other top libraries included in the benchmarks. There are a few things that lead to this performance advantage, none of them hard and fast rules, but all of them simple and repeatable in almost any code library:
Optimize around the fastest and most common use cases first. Of course, this will change from project-to-project, but I took some time to understand how and why typeof
checks were being used in my own libraries and other libraries I use a lot.
Optimize around bottlenecks - In other words, the order in which conditionals are implemented is significant, because each check is only as fast as the failing checks that came before it. Here, the biggest bottleneck by far is checking for plain objects (an object that was created by the Object
constructor). I opted to make this check happen by process of elimination rather than brute force up front (e.g. by using something like val.constructor.name
), so that every other type check would not be penalized it.
Don't do uneccessary processing - why do .slice(8, -1).toLowerCase();
just to get the word regex
? It's much faster to do if (type === '[object RegExp]') return 'regex'
Commits
Contributor
59
2
1
1
1
1
To generate the readme, run the following command:
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
Jon Schlinkert
Benchmarked against and . Note that performaces is slower for es6 features Map
, WeakMap
, Set
and WeakSet
.
: Returns true
if the given string looks like a glob pattern or an extglob pattern… |
: Returns true if the value is a number. comprehensive tests. |
: Returns true
if the value is a primitive. |
Pull requests and stars are always welcome. For bugs and feature requests, .
(This project's readme.md is generated by , please don't edit the readme directly. Any changes to the readme must be made in the readme template.)
Copyright © 2017, . Released under the .
This file was generated by , v0.6.0, on May 16, 2017.