Skip to content

Instantly share code, notes, and snippets.

@thyngster
Created January 18, 2018 13:40
Show Gist options
  • Save thyngster/b2c04323c41aa6ff2e955dacb64fa1db to your computer and use it in GitHub Desktop.
Save thyngster/b2c04323c41aa6ff2e955dacb64fa1db to your computer and use it in GitHub Desktop.
Exports object as JSON string keeping undefined values
JSON.stringify(obj, function (k, v) {
return (v === undefined) ? "undefined" : v
}).replace(/\"undefined\"/g,undefined);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment