peach a19a732be8 commit message | hace 2 años | |
---|---|---|
.. | ||
.github | hace 2 años | |
test | hace 2 años | |
.eslintignore | hace 2 años | |
.eslintrc | hace 2 años | |
.nycrc | hace 2 años | |
CHANGELOG.md | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
index.js | hace 2 años | |
package.json | hace 2 años |
Is this an ES BigInt value?
var isBigInt = require('is-bigint');
assert(!isBigInt(function () {}));
assert(!isBigInt(null));
assert(!isBigInt(function* () { yield 42; return Infinity; });
assert(!isBigInt(Symbol('foo')));
assert(isBigInt(1n));
assert(isBigInt(Object(1n)));
Simply clone the repo, npm install
, and run npm test