Skip to main content

BigInt

A collection of functions to manipulate bigint

@example
import { BigInt } from '@w5s/core';

const total = [1n, 2n, 3n].reduce(BigInt['+'], 0n);// 6n
BigInt['=='](total, 6n);// true