|
2 months ago | |
---|---|---|
.. | ||
LICENSE | 2 months ago | |
README.md | 2 months ago | |
index.d.ts | 2 months ago | |
index.js | 2 months ago | |
package.json | 2 months ago |
complete type checking for node, extend core-util-is
dependencies:
npm install is-type-of
var is = require('is-type-of');
is.array([1]); // => true
is.primitive(true); // => true
is.primitive({}); // => false
is.generatorFunction(function * () {}); // => true
is.long(Math.pow(2, 33)); // => true
is.double(0); // => false
MIT