Skip to content

Instantly share code, notes, and snippets.

@allekmott
Created January 18, 2018 00:05
Show Gist options
  • Save allekmott/f41b33b830371d70a956378fe1aca86d to your computer and use it in GitHub Desktop.
Save allekmott/f41b33b830371d70a956378fe1aca86d to your computer and use it in GitHub Desktop.
Convert JS object string (arg) to JSON string
#!/usr/bin/env node
const json = eval(`(${process.argv[2]})`);
console.log(JSON.stringify(json));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment