Skip to content

Instantly share code, notes, and snippets.

@vitaly-t
Created October 15, 2019 15:46
Show Gist options
  • Select an option

  • Save vitaly-t/90c3a6245cde7958a06d8bd150a60082 to your computer and use it in GitHub Desktop.

Select an option

Save vitaly-t/90c3a6245cde7958a06d8bd150a60082 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