git.r.bdr.sh
/
rbdr
/
dotfiles
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Add FZF config to vim. Simplify syntastic
[rbdr/dotfiles]
/
atom
/
packages
/
pretty-json
/
node_modules
/
json-stable-stringify
/
test
/
str.js
Commit
Line
Data
06a3d686
BB
1
var test = require('tape');
2
var stringify = require('../');
3
4
test('simple object', function (t) {
5
t.plan(1);
6
var obj = { c: 6, b: [4,5], a: 3, z: null };
7
t.equal(stringify(obj), '{"a":3,"b":[4,5],"c":6,"z":null}');
8
});