Sha256: 270a1262309d002a79d2a863a46f4b4b1107e03447de8622a85f77dcb88b442e
Contents?: true
Size: 921 Bytes
Versions: 25
Compression:
Stored size: 921 Bytes
Contents
var fs = require ('fs') , join = require('path').join , file = join(__dirname, 'fixtures','all_npm.json') , JSONStream = require('../') , it = require('it-is').style('colour') function randomObj () { return ( Math.random () < 0.4 ? {hello: 'eonuhckmqjk', whatever: 236515, lies: true, nothing: [null], // stuff: [Math.random(),Math.random(),Math.random()] } : ['AOREC', 'reoubaor', {ouec: 62642}, [[[], {}, 53]]] ) } var expected = [] , stringify = JSONStream.stringify() , es = require('event-stream') , stringified = '' , called = 0 , count = 10 , ended = false while (count --) expected.push(randomObj()) es.connect( es.readArray(expected), stringify, JSONStream.parse([true]), es.writeArray(function (err, lines) { it(lines).has(expected) console.error('PASSED') }) )
Version data entries
25 entries across 16 versions & 6 rubygems