Skip to content

Instantly share code, notes, and snippets.

@kjlape
Created October 20, 2017 16:35
Show Gist options
  • Select an option

  • Save kjlape/aba24c5421255b334b641aa79145f9be to your computer and use it in GitHub Desktop.

Select an option

Save kjlape/aba24c5421255b334b641aa79145f9be to your computer and use it in GitHub Desktop.
function purty(object, indent = 2) {
return JSON.stringify(object, null, indent)
}
function pp(object, ...rest) {
console.log(purty(object, ...rest))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment