Skip to content

Instantly share code, notes, and snippets.

@gucheen
Created August 25, 2015 05:51
Show Gist options
  • Save gucheen/12b90451f04733078d7f to your computer and use it in GitHub Desktop.
Save gucheen/12b90451f04733078d7f to your computer and use it in GitHub Desktop.
Safe JSON.parse with lodash.js
function parseLodash(str){
return _.attempt(JSON.parse.bind(null, str));
}
@RubenMateus
Copy link

ok

@itsDiwaker
Copy link

@bllevy so that this is hard bound to our preference and left at the mercy of _.attempt or a foreign function. I think it's just a protective pattern.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment