babel-plugin-transform-bigint
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.
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...
``` function legendre(a, n) { if (typeof a !== 'number' || typeof n !== 'number') { throw new TypeError(); } a = a | 0; n = n | 0;...