root 3bf41bf355 update | há 1 ano atrás | |
---|---|---|
.. | ||
.github | há 1 ano atrás | |
test | há 1 ano atrás | |
.eslintignore | há 1 ano atrás | |
.eslintrc | há 1 ano atrás | |
.nycrc | há 1 ano atrás | |
CHANGELOG.md | há 1 ano atrás | |
LICENSE | há 1 ano atrás | |
README.md | há 1 ano atrás | |
index.js | há 1 ano atrás | |
package.json | há 1 ano atrás |
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