We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node.js supports BigInt BigInt64Array BigUInt64Array which are proposed at stage 3 at TC39.
BigInt
BigInt64Array
BigUInt64Array
$ node -e 'console.log(typeof 1n)' bigint $ node -e 'console.log("" + 9007199254740993)' 9007199254740992 $ node -e 'console.log("" + 9007199254740993n)' 9007199254740993
We currently have int64 option to decode msgpack's (u)int64 with int64-buffer object.
int64
var codec = msgpack.createCodec({int64: true});
Features:
{bigint: true}
The text was updated successfully, but these errors were encountered:
@kawanet what is the state of bigint support?
Sorry, something went wrong.
this is level 4 now.
No branches or pull requests
Node.js supports
BigInt
BigInt64Array
BigUInt64Array
which are proposed at stage 3 at TC39.We currently have
int64
option to decode msgpack's (u)int64 with int64-buffer object.Features:
{bigint: true}
option.The text was updated successfully, but these errors were encountered: