mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 00:37:33 -04:00
29 lines
488 B
JavaScript
29 lines
488 B
JavaScript
|
|
|
|
/*
|
|
sometimes jsonparse changes numbers slightly.
|
|
*/
|
|
|
|
var r = Math.random()
|
|
, Parser = require('jsonparse')
|
|
, p = new Parser()
|
|
, assert = require('assert')
|
|
, times = 20
|
|
while (times --) {
|
|
|
|
assert.equal(JSON.parse(JSON.stringify(r)), r, 'core JSON')
|
|
|
|
p.onValue = function (v) {
|
|
console.error('parsed', v)
|
|
assert.equal(
|
|
String(v).slice(0,12),
|
|
String(r).slice(0,12)
|
|
)
|
|
}
|
|
console.error('correct', r)
|
|
p.write (new Buffer(JSON.stringify([r])))
|
|
|
|
|
|
|
|
}
|