babel-plugin-transform-bigint icon indicating copy to clipboard operation
babel-plugin-transform-bigint copied to clipboard

A plugin for babel to transform `x * y` into something like `JSBI.multiply(x, y)` to support bigints.

Results 2 babel-plugin-transform-bigint issues
Sort by recently updated
recently updated
newest added

Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@​joaomoreno, @​lukekarrys) Changelog Sourced from semver's...

dependencies

``` function legendre(a, n) { if (typeof a !== 'number' || typeof n !== 'number') { throw new TypeError(); } a = a | 0; n = n | 0;...