Created
June 18, 2017 18:55
-
-
Save lon-io/b10d0525ce086cb35f0a957f72c86a67 to your computer and use it in GitHub Desktop.
Strip the quotes("") off the keys in a JSON Object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let jsonObj = { | |
"name": "Lon", | |
"email": "[email protected]" | |
}; | |
console.log(JSON.stringify(jsonObj).replace(/(")(\w*)(")(:)/g, '$2$4')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment