UNPKG

json-processing

Version:

JSON Processing Tool

7 lines (6 loc) 319 B
/* global select from */ module.exports = () => select(from('./test/stream-tests/ndjson-join-left.json')).pipe( groupJoin(select(from('./test/stream-tests/ndjson-join-right.json')), left => left.keyLeft, right => right.keyRight, left => left.valueLeft, right => right.valueRight), toArray());