Skip to content

Instantly share code, notes, and snippets.

@vitaly-t
Created October 15, 2019 15:42
Show Gist options
  • Save vitaly-t/86df0b2ae534327cdc1af2f753e8bc30 to your computer and use it in GitHub Desktop.
Save vitaly-t/86df0b2ae534327cdc1af2f753e8bc30 to your computer and use it in GitHub Desktop.
// Alternative/official approach to serializing BigInt:
BigInt.prototype.toJSON = function () {
return `${this.toString()}n`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment