summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/JSONStream/test/parsejson.js
blob: df4fbbe73a40d6859e7eea46f60426885dbecfa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29


/*
 sometimes jsonparse changes numbers slightly.
*/

var r = Math.random()
  , Parser = require('jsonparse')
  , p = new Parser()
  , assert = require('assert')
  , times = 20
  , bufferFrom = Buffer.from && Buffer.from !== Uint8Array.from
  , str

while (times --) {

  assert.equal(JSON.parse(JSON.stringify(r)), r, 'core JSON')

  p.onValue = function (v) {
    console.error('parsed', v)
    assert.equal(v,r)
  }
  console.error('correct', r)
  str = JSON.stringify([r])
  p.write (bufferFrom ? Buffer.from(str) : new Buffer(str))



}