0.0.0 • Published 12 years ago
json-literal-parse v0.0.0
json-literal-parse
superset of JSON.parse() adding regex, null, and octal literals
example
var parse = require('json-literal-parse');
var xs = parse('["robot",/^b[eo]{2}p$/,{"x":null,"y":0777}]');
console.dir(xs);methods
var parse = require('json-literal-parse')var obj = parse(str)
Parse the input string str, returning the parsed representation obj.
parse() is just like JSON.parse() except that the input may have additional
"literal" types not in the JSON spec, which are:
- regex
- null
- octal
install
With npm do:
npm install json-literal-parselicense
MIT
0.0.0
12 years ago

