node-jsonstream 1.3.5-2 source package in Ubuntu

Changelog

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

  * Team upload
  * Bump debhelper compatibility level to 13
  * Fix GitHub tags regex
  * Use dh-sequence-nodejs
  * Declare compliance with policy 4.6.0
  * Fix filenamemangle
  * Fix test for tap >= 15 (--no-cov) (Closes: #1009545)

 -- Yadd <email address hidden>  Tue, 19 Apr 2022 07:48:17 +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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-jsonstream_1.3.5-2.dsc 2.1 KiB 8c61b2b37c7dc591ab109ceb84c3dd0a9e1c53fc5df00e053638374720e1f89f
node-jsonstream_1.3.5.orig.tar.gz 136.2 KiB ef3be72c45c76fbb688e2cb3078a7905b413ec9c8eb2d889cd0481f38c712488
node-jsonstream_1.3.5-2.debian.tar.xz 3.6 KiB f0e26563c3dfe9fd94bfd6bb30b6d31f37bcbb75e8aac66a996127963b4be2ce

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.