UNPKG

hifo-stream

Version:
11 lines (9 loc) 313 B
var es = require('event-stream'); var HifoStream = require('../index'); var people = require('./people.json'); console.log('logging if item.age is in the highest 2 seen so far'); es.readArray(people) .pipe(HifoStream(HifoStream.highest('age'), 2).filter()) .on('data', function (data) { console.log(data); });