source: imaps-frontend/node_modules/json-stable-stringify-without-jsonify/readme.markdown

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.7 KB
Line 
1# json-stable-stringify
2
3This is the same as https://github.com/substack/json-stable-stringify but it doesn't depend on libraries without licenses (jsonify).
4
5deterministic version of `JSON.stringify()` so you can get a consistent hash
6from stringified results
7
8You can also pass in a custom comparison function.
9
10[![browser support](https://ci.testling.com/substack/json-stable-stringify.png)](https://ci.testling.com/substack/json-stable-stringify)
11
12[![build status](https://secure.travis-ci.org/substack/json-stable-stringify.png)](http://travis-ci.org/substack/json-stable-stringify)
13
14# example
15
16``` js
17var stringify = require('json-stable-stringify');
18var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
19console.log(stringify(obj));
20```
21
22output:
23
24```
25{"a":3,"b":[{"x":4,"y":5,"z":6},7],"c":8}
26```
27
28# methods
29
30``` js
31var stringify = require('json-stable-stringify')
32```
33
34## var str = stringify(obj, opts)
35
36Return a deterministic stringified string `str` from the object `obj`.
37
38## options
39
40### cmp
41
42If `opts` is given, you can supply an `opts.cmp` to have a custom comparison
43function for object keys. Your function `opts.cmp` is called with these
44parameters:
45
46``` js
47opts.cmp({ key: akey, value: avalue }, { key: bkey, value: bvalue })
48```
49
50For example, to sort on the object key names in reverse order you could write:
51
52``` js
53var stringify = require('json-stable-stringify');
54
55var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
56var s = stringify(obj, function (a, b) {
57 return a.key < b.key ? 1 : -1;
58});
59console.log(s);
60```
61
62which results in the output string:
63
64```
65{"c":8,"b":[{"z":6,"y":5,"x":4},7],"a":3}
66```
67
68Or if you wanted to sort on the object values in reverse order, you could write:
69
70```
71var stringify = require('json-stable-stringify');
72
73var obj = { d: 6, c: 5, b: [{z:3,y:2,x:1},9], a: 10 };
74var s = stringify(obj, function (a, b) {
75 return a.value < b.value ? 1 : -1;
76});
77console.log(s);
78```
79
80which outputs:
81
82```
83{"d":6,"c":5,"b":[{"z":3,"y":2,"x":1},9],"a":10}
84```
85
86### space
87
88If you specify `opts.space`, it will indent the output for pretty-printing.
89Valid values are strings (e.g. `{space: \t}`) or a number of spaces
90(`{space: 3}`).
91
92For example:
93
94```js
95var obj = { b: 1, a: { foo: 'bar', and: [1, 2, 3] } };
96var s = stringify(obj, { space: ' ' });
97console.log(s);
98```
99
100which outputs:
101
102```
103{
104 "a": {
105 "and": [
106 1,
107 2,
108 3
109 ],
110 "foo": "bar"
111 },
112 "b": 1
113}
114```
115
116### replacer
117
118The replacer parameter is a function `opts.replacer(key, value)` that behaves
119the same as the replacer
120[from the core JSON object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_native_JSON#The_replacer_parameter).
121
122# install
123
124With [npm](https://npmjs.org) do:
125
126```
127npm install json-stable-stringify
128```
129
130# license
131
132MIT
Note: See TracBrowser for help on using the repository browser.