HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/douven.komma.pro/node_modules/npm/node_modules/JSONStream/test/null.js
var JSONStream = require('../')

var data = [
  {ID: 1, optional: null},
  {ID: 2, optional: null},
  {ID: 3, optional: 20},
  {ID: 4, optional: null},
  {ID: 5, optional: 'hello'},
  {ID: 6, optional: null}
]


var test = require('tape')

test ('null properties', function (t) {
  var actual = []
  var stream = 

  JSONStream.parse('*.optional')
    .on('data', function (v) { actual.push(v) })
    .on('end', function () {
      t.deepEqual(actual, [20, 'hello'])
      t.end()
    })

  stream.write(JSON.stringify(data, null, 2))
  stream.end()
})