node-d3-queue 3.0.7-12 source package in Ubuntu

Changelog

node-d3-queue (3.0.7-12) unstable; urgency=medium

  * team upload

  [ Yadd ]
  * Fix GitHub tags regex

  [ Jonas Smedegaard ]
  * use and build-depend on terser (not uglifyjs.terser)

 -- Jonas Smedegaard <email address hidden>  Thu, 02 Dec 2021 20:08:39 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-d3-queue_3.0.7-12.dsc 2.0 KiB 0b2f5a68db9ab5b7ccb8fa520f0ae310a4315fb9bc06eac7bc64e5087a1683a9
node-d3-queue_3.0.7.orig.tar.gz 8.3 KiB 54afc4a4aa02904450e48426e5d7266dffaa9a9516d3f92d8d4509fd2bc14159
node-d3-queue_3.0.7-12.debian.tar.xz 3.7 KiB 2b118d341eb39ea8971a2e598e31f69a09ee07f43f511929e47b2047ceae8a38

Available diffs

No changes file available.

Binary packages built by this source

node-d3-queue: Evaluate asynchronous tasks with configurable concurrency

 A queue evaluates zero or more deferred asynchronous tasks with configurable
 concurrency: you control how many tasks run at the same time. When all the
 tasks complete, or an error occurs, the queue passes the results to your await
 callback.
 .
 This library is similar to Async.js’s parallel (when *concurrency* is infinite)
 , series (when *concurrency* is 1), and queue, but features a much smaller
 footprint: as of release 2, d3-queue is about 700 bytes gzipped, compared to
 4,300 for Async.
 .
 Node.js is an event-based server-side JavaScript engine.