0.1.0 • Published 11 years ago

js-json-parse2 v0.1.0

Weekly downloads
4
License
-
Repository
-
Last release
11 years ago

js-json-parse2

JSON parsing with callbacks! It's so not try/catch/finally...

Usage

JSON.parse2('I am not JSON', function(err, json) {
  if (err) {
    console.info('FUUUUUUUUUUUUUUUUU');
  } else {
    onWithMyDay();
  }
});