Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The is-bigint npm package provides a simple and straightforward way to check if a given value is a BigInt. It is particularly useful in applications where distinguishing between BigInt and other numeric types is necessary for correct operation or data handling.
Check if a value is a BigInt
This feature allows you to verify whether a given value is of the BigInt type. It's useful for type checking in applications that need to handle large integers safely.
const isBigInt = require('is-bigint');
console.log(isBigInt(10n)); // true
console.log(isBigInt(10)); // false
The 'is' package offers a comprehensive set of type check utilities, including a method to check for BigInts. It covers a broader range of types compared to is-bigint, making it suitable for applications requiring extensive type validations.
Type-check provides detailed type checking capabilities, including support for BigInt. It allows for more complex type checks and validations, making it a good choice for applications with intricate data validation needs.
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
v1.1.0 - 2024-12-02
0e63a44
npmignore
to autogenerate an npmignore file 47584ee
for-each
and es-value-fixtures
f226864
78e2c47
4395a8d
eslint
, @ljharb/eslint-config
, aud
, auto-changelog
, has-symbols
, object-inspect
, tape
c188501
eslint
, @ljharb/eslint-config
, object-inspect
, safe-publish-latest
, tape
5360d32
d5c1775
c7478c7
@ljharb/eslint-config
, auto-changelog
, npmignore
, object-inspect
, tape
6fbce66
engines.node
6f9ed42
aud
with npm audit
21846c3
has-symbols
, add missing has-tostringtag
b378d94
has-bigints
f46c35b
2b9be16
FAQs
Is this value an ES BigInt?
The npm package is-bigint receives a total of 25,141,262 weekly downloads. As such, is-bigint popularity was classified as popular.
We found that is-bigint demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.