JSON parser / stringifier.
$ component install component/json
varjson=require('json');json.parse('{"foo":"bar"}');// => { foo: 'bar' }If you're working with browsers that do not provide a native JSON,
then you should install json-fallback
and this module will export that instead.
MIT