node-d3-dispatch 1.0.6-1 source package in Ubuntu

Changelog

node-d3-dispatch (1.0.6-1) unstable; urgency=medium

  * Team upload
  * New upstream version 1.0.6
  * Bump Standards-Version to 4.4.1 (no changes needed)
  * Drop compat file, rely on debhelper-compat and bump compat level to 12
  * Removed debian/install; not required
  * Fixed format URL in debian/copyright
  * Added upstream/metadata
  * Added debian/gbp.conf
  * Added Rules-Require-Root in debian/control
  * Fix package wrt cme
  * Run wrap-and-sort

 -- Abhijith Sheheer <email address hidden>  Fri, 20 Dec 2019 23:32:01 +0530

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
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-d3-dispatch_1.0.6-1.dsc 2.0 KiB dd6bd69b1b58e53311b0c656d7927648d935746cab9af7b898607984a7ff3e2e
node-d3-dispatch_1.0.6.orig.tar.gz 25.9 KiB 907591839e4175db8e6ac64e323bc1d9d7d4ff36a6d9bb4068caa6b5a50c796e
node-d3-dispatch_1.0.6-1.debian.tar.xz 3.6 KiB 31994371e37e3e0c681f00c355d5fece87c9106eac2261748c8972fd5b06c5d9

Available diffs

No changes file available.

Binary packages built by this source

node-d3-dispatch: Register named callbacks and call them with arguments

 Dispatching is a convenient mechanism for separating concerns with
 loosely-coupled code: register named callbacks and then call them with
 arbitrary arguments. A variety of D3 components, such as d3-request, use this
 mechanism to emit events to listeners. Think of this like Node’s EventEmitter,
 except every listener has a well-defined name so it’s easy to remove or
 replace them.
 .
 Node.js is an event-based server-side JavaScript engine.