You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
王厅 539a1f95cc vue + ant-design + vxe-table 3 weeks ago
..
.github vue + ant-design + vxe-table 3 weeks ago
test vue + ant-design + vxe-table 3 weeks ago
.eslintrc vue + ant-design + vxe-table 3 weeks ago
.nycrc vue + ant-design + vxe-table 3 weeks ago
CHANGELOG.md vue + ant-design + vxe-table 3 weeks ago
LICENSE vue + ant-design + vxe-table 3 weeks ago
README.md vue + ant-design + vxe-table 3 weeks ago
index.d.ts vue + ant-design + vxe-table 3 weeks ago
index.js vue + ant-design + vxe-table 3 weeks ago
package.json vue + ant-design + vxe-table 3 weeks ago
tsconfig.json vue + ant-design + vxe-table 3 weeks ago

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