Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chai-bigint

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chai-bigint

Chai assertions for comparing arbitrary-precision integers using the native bigint type

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

chai-bigint

NPM Package Test

Chai assertions for comparing arbitrary-precision integers using the bigint native type. Adapted from ethereum-waffle.

Installation

yarn add chai-bigint --dev

OR

npm install chai-bigint --save-dev

Usage

const chai = require('chai');

chai.use(require('chai-bigint'));

Assertions

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:

  • equal/equals/eq
  • above/gt/greaterThan
  • least/gte
  • below/lt/lessThan
  • most/lte
  • closeTo

A set of additional assertion properties is also provided:

  • negative
  • zero

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.

Examples

Methods:

const actual = 100000000000000000n + 1n;
const expected = 100000000000000001n;

expect(actual).to.be.equal(expected);
expect(actual).to.be.gt(100n);

License

chai-bn is open source and distributed under the MIT License (see LICENSE).

FAQs

Package last updated on 06 Jul 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc