F[嗶][嗶]k JSON
Parse JSON-Object string (not normalized JSON string) into JSON object.
Installation
$ npm install fbbk-json --save
or
$ bower install fbbk-json --save
Usage
This package has only one function:
var fJSON = require("fbbk-json");
fJSON.parse(A_JSON_STRING);
BUT
This package support the JSON string that written down like a JSON object in javascript.
For example:
'{"foo": "bar","baz": true}' <-- both JSON and fJSON are supported
'{foo: "bar",baz: true}' <-- only fJSON supported! ٩(๑•̀ω•́๑)۶
So you can do that:
var json1 = '{"foo": "bar","baz": true}';
var json2 = '{foo: \'bar\',baz: true,c:[]}';
JSON.parse(json1);
JSON.parse(json2);
fJSON.parse(json1);
fJSON.parse(json2);
Contribute
You're welcome to make pull requests!
「雖然我覺得不怎麼可能有人會關注我」