node-jsonstream 1.3.5-3 source package in Ubuntu

Changelog

node-jsonstream (1.3.5-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since buster:
    + Build-Depends: Drop versioned constraint on node-tap.
    + node-jsonstream: Drop versioned constraint on nodejs in Depends.
  * Apply multi-arch hints. + node-jsonstream: Add :any qualifier for nodejs dependency.

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 14:57:06 +0000

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-jsonstream_1.3.5-3.dsc 2.1 KiB 7a0c48a025615e8c9c03de6cf0535d30f0197fc133427f2b2fa67cf844a65772
node-jsonstream_1.3.5.orig.tar.gz 136.2 KiB ef3be72c45c76fbb688e2cb3078a7905b413ec9c8eb2d889cd0481f38c712488
node-jsonstream_1.3.5-3.debian.tar.xz 3.7 KiB 1fed37fa13d6067152f0502126f3fadee07396cd00da279c933069d61a83d024

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.