Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
chai-bigint
Advanced tools
Chai assertions for comparing arbitrary-precision integers using the native bigint type
Chai
assertions for comparing arbitrary-precision integers using the bigint
native type. Adapted from ethereum-waffle.
yarn add chai-bigint --dev
OR
npm install chai-bigint --save-dev
const chai = require('chai');
chai.use(require('chai-bigint'));
The following assertion methods are provided and will override the existing builtin assertions if the bigint
property is set as part of the assertion chain:
A set of additional assertion properties is also provided:
Both actual values (the values being asserted) and expected values (the values the actual value is expected to match) can be either instances of bigint
, or strings which can be converted into a valid number.
Only BDD style (expect
or should
) assertions are supported.
Methods:
const actual = 100000000000000000n + 1n;
const expected = 100000000000000001n;
expect(actual).to.be.equal(expected);
expect(actual).to.be.gt(100n);
chai-bn
is open source and distributed under the MIT License (see LICENSE
).
FAQs
Chai assertions for comparing arbitrary-precision integers using the native bigint type
The npm package chai-bigint receives a total of 505 weekly downloads. As such, chai-bigint popularity was classified as not popular.
We found that chai-bigint demonstrated a not healthy version release cadence and project activity because the last version was released 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.