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

Changelog

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

  * Team upload

  [ Yadd ]
  * Declare compliance with policy 4.6.1
  * Fix filenamemangle
  * Drop dependency to nodejs

 -- Paul Gevers <email address hidden>  Sun, 03 Jul 2022 22:09:13 +0200

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-d3-queue_3.0.7-13.dsc 1.7 KiB 26d3d96a9f160433f8bcb24f6c68f754f704a93b91c2795c526fbe29745be170
node-d3-queue_3.0.7.orig.tar.gz 8.3 KiB 54afc4a4aa02904450e48426e5d7266dffaa9a9516d3f92d8d4509fd2bc14159
node-d3-queue_3.0.7-13.debian.tar.xz 3.7 KiB 419255b83a5b0a167cc6f6ca8b2a6637d05b5f1194762df07ebe613d0eff59c9

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.