fbbk-json

1.1.1 • Public • Published

F[嗶][嗶]k JSON

fbbk-json TravisCI Coveralls Dependency Status

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);              ///< SyntaxError: Unexpected token , in JSON at position 1
JSON.parse(json2);              ///< SyntaxError: Unexpected token f
fJSON.parse(json1);             ///< { foo: 'bar', baz: true }
fJSON.parse(json2);             ///< { foo: 'bar', baz: true, c: [] }   \(●´ϖ`●)/

Contribute

You're welcome to make pull requests!

「雖然我覺得不怎麼可能有人會關注我」

Readme

Keywords

Package Sidebar

Install

npm i fbbk-json

Weekly Downloads

28

Version

1.1.1

License

MIT

Unpacked Size

67.6 kB

Total Files

22

Last publish

Collaborators

  • xadillax