Replaces bignum with the built-in BigInt, adds TypeScript definitions #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Made several changes but the most important was replacing
bignum
with the build-inBigInt
so the package no longer depends on native modules (bignum
depends on OpenSSL), so it can run in the browser.BigInt
was added in Node 10.24.1, so these change would break compatibility with Node versions earlier than that.bignum
package with the built-inBigInt
which was added in ES11, and updatedlib/base85.js
accordingly.lib/alphabets.js
andlib/base85.js
.new Buffer
withBuffer.from
orBuffer.alloc
.buffer
package so theBuffer
class can be used outside of node (e.g., on the browser).jshint
to ES11.