node-jsonstream 1.0.6-1 source package in Ubuntu

Changelog

node-jsonstream (1.0.6-1) unstable; urgency=medium

  * New upstream release
  * Bump policy no change

 -- Bastien Roucariès <email address hidden>  Mon, 17 Apr 2017 00:16:14 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-jsonstream_1.0.6-1.dsc 2.2 KiB 95952c2980982ea007fe42196a4a6f06675d7391dc7f6997ba46da2615cd84d0
node-jsonstream_1.0.6.orig.tar.gz 134.3 KiB fa8c1752195e7af30aa8155119015c7974eabd7357cbb6d321552f651345de69
node-jsonstream_1.0.6-1.debian.tar.xz 3.4 KiB 4e5dadb809fb55b34dee33b2593f6d527f9c2ef7ca1b307051f6e36722b737fa

Available diffs

No changes file available.

Binary packages built by this source

node-jsonstream: streaming JSON.parse and stringify

 JSONStream.parse(pattern, map) provide a function that can be used to map or
 filter the json output. map is passed the value at that node of the pattern,
 if map return non-nullish (anything but null or undefined) that value will be
 emitted in the stream. If it returns a nullish value, nothing will be emitted.
 .
 JSONStream also emits 'header' and 'footer' events, the 'header' event
 contains anything in the output that was before the first match, and the
 'footer', is anything after the last match.