Bakhtina Sofya b84cb877be 1st comm hace 3 semanas
..
.github b84cb877be 1st comm hace 3 semanas
test b84cb877be 1st comm hace 3 semanas
.eslintignore b84cb877be 1st comm hace 3 semanas
.eslintrc b84cb877be 1st comm hace 3 semanas
.nycrc b84cb877be 1st comm hace 3 semanas
CHANGELOG.md b84cb877be 1st comm hace 3 semanas
LICENSE b84cb877be 1st comm hace 3 semanas
README.md b84cb877be 1st comm hace 3 semanas
index.js b84cb877be 1st comm hace 3 semanas
package.json b84cb877be 1st comm hace 3 semanas

README.md

is-bigint Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this an ES BigInt value?

Example

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)));

Tests

Simply clone the repo, npm install, and run npm test