1 <section class=
"suite">
5 <dd><pre><code>JSON.minify.should.be.ok;
</code></pre></dd>
6 <dt>in-memory string
</dt>
7 <dd><pre><code>var json = '{
"key
":
"value
"}';
8 var res = JSON.minify(json);
9 JSON.parse(res).key.should.equal('value');
</code></pre></dd>
11 <dd><pre><code>var json = fs.readFileSync(__dirname + '/comment.json', 'utf8');
12 var res = JSON.parse(JSON.minify(json));
13 res.foo.should.equal('bar');
</code></pre></dd>
15 <dd><pre><code>var json = fs.readFileSync(__dirname + '/plain.json', 'utf8');
16 var res = JSON.parse(JSON.minify(json));
17 res.foo.should.equal('bar');
</code></pre></dd>