Files
Ceras/themes/ceras/node_modules/json-stable-stringify/test/nested.js
T
2023-07-12 16:31:19 +01:00

9 lines
236 B
JavaScript
Executable File

var test = require('tape');
var stringify = require('../');
test('nested', function (t) {
t.plan(1);
var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
t.equal(stringify(obj), '{"a":3,"b":[{"x":4,"y":5,"z":6},7],"c":8}');
});