Skip to content

Instantly share code, notes, and snippets.

@vitaly-t
Created October 7, 2019 20:09
Show Gist options
  • Save vitaly-t/e9d8c40113970b43cd7f8fdd913541de to your computer and use it in GitHub Desktop.
Save vitaly-t/e9d8c40113970b43cd7f8fdd913541de to your computer and use it in GitHub Desktop.
function stringify(value) {
if (value !== undefined) {
return JSON.stringify(value, (_, v) => typeof v === 'bigint' ? v.toString() : v);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment