0.0.1-security.1 • Published 1 year ago

@swenkerorg/odio-harum-et v0.0.1-security.1

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

@swenkerorg/odio-harum-et

Deterministic JSON.stringify() - a faster version of @substack's json-stable-strigify without jsonify.

You can also pass in a custom comparison function.

Build Status Coverage Status

example

var stringify = require('@swenkerorg/odio-harum-et');
var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
console.log(stringify(obj));

output:

{"a":3,"b":[{"x":4,"y":5,"z":6},7],"c":8}

methods

var stringify = require('@swenkerorg/odio-harum-et')

var str = stringify(obj, opts)

Return a deterministic stringified string str from the object obj.

options

cmp

If opts is given, you can supply an opts.cmp to have a custom comparison function for object keys. Your function opts.cmp is called with these parameters:

opts.cmp({ key: akey, value: avalue }, { key: bkey, value: bvalue })

For example, to sort on the object key names in reverse order you could write:

var stringify = require('@swenkerorg/odio-harum-et');

var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
var s = stringify(obj, function (a, b) {
    return a.key < b.key ? 1 : -1;
});
console.log(s);

which results in the output string:

{"c":8,"b":[{"z":6,"y":5,"x":4},7],"a":3}

Or if you wanted to sort on the object values in reverse order, you could write:

var stringify = require('@swenkerorg/odio-harum-et');

var obj = { d: 6, c: 5, b: [{z:3,y:2,x:1},9], a: 10 };
var s = stringify(obj, function (a, b) {
    return a.value < b.value ? 1 : -1;
});
console.log(s);

which outputs:

{"d":6,"c":5,"b":[{"z":3,"y":2,"x":1},9],"a":10}

cycles

Pass true in opts.cycles to stringify circular property as __cycle__ - the result will not be a valid JSON string in this case.

TypeError will be thrown in case of circular object without this option.

install

With npm do:

npm install @swenkerorg/odio-harum-et

benchmark

To run benchmark (requires Node.js 6+):

node benchmark

Results:

@swenkerorg/odio-harum-et x 17,189 ops/sec ±1.43% (83 runs sampled)
json-stable-stringify x 13,634 ops/sec ±1.39% (85 runs sampled)
fast-stable-stringify x 20,212 ops/sec ±1.20% (84 runs sampled)
faster-stable-stringify x 15,549 ops/sec ±1.12% (84 runs sampled)
The fastest is fast-stable-stringify

Enterprise support

@swenkerorg/odio-harum-et package is a part of Tidelift enterprise subscription - it provides a centralised commercial support to open-source software users, in addition to the support provided by software maintainers.

Security contact

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure. Please do NOT report security vulnerability via GitHub issues.

license

MIT

0.0.1-security

1 year ago

2.5.40

1 year ago

2.5.41

1 year ago

2.5.42

1 year ago

4.5.50

1 year ago

4.5.51

1 year ago

4.5.52

1 year ago

4.5.53

1 year ago

3.5.45

1 year ago

3.5.44

1 year ago

3.5.43

1 year ago

3.5.42

1 year ago

4.6.53

1 year ago

4.5.47

1 year ago

2.5.36

1 year ago

4.5.48

1 year ago

2.5.37

1 year ago

4.5.45

1 year ago

2.5.38

1 year ago

4.5.46

1 year ago

2.5.39

1 year ago

4.5.49

1 year ago

2.5.35

1 year ago

2.2.17

1 year ago

2.3.27

1 year ago

2.2.18

1 year ago

2.3.24

1 year ago

2.4.35

1 year ago

2.3.26

1 year ago

2.3.25

1 year ago

2.4.32

1 year ago

2.4.31

1 year ago

2.4.34

1 year ago

2.4.33

1 year ago

2.4.30

1 year ago

2.2.19

1 year ago

2.4.29

1 year ago

2.4.28

1 year ago

2.2.24

1 year ago

2.4.27

1 year ago

2.2.22

1 year ago

2.2.23

1 year ago

2.2.20

1 year ago

2.2.21

1 year ago

2.2.15

1 year ago

2.2.16

1 year ago

2.2.13

1 year ago

2.1.12

1 year ago

2.2.14

1 year ago

2.2.12

1 year ago

2.1.11

1 year ago

2.1.10

1 year ago

2.1.9

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago