0.0.1 • Published 11 years ago
json-string v0.0.1
json-string
A JSON formatter with support for sorting keys and more.
Install
$ npm install --save json-stringExample
var json = require('json-string');
var string = json({
hello: 'world',
foo: 'bar',
number: 5
});
console.log(string);
// {
// "foo": "bar",
// "hello": "world",
// "number": 5
// }API
json(input, options)
Formats the input value as a string. (any value can be passed for input, not
just objects)
Available options:
replacer(function) - Used to format object properties. (see docs)sortKeys(boolean) - If set tofalse, object keys will not be sorted.spaces(number) - Used to set indentation levels. (see docs)
json.defaults
Exposed to allow for overriding the default options.
0.0.1
11 years ago