d3-format 1:1.4.1-3 source package in Ubuntu

Changelog

d3-format (1:1.4.1-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Set field Upstream-Contact in debian/copyright.
  * Set upstream metadata fields: Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata (already
    present in machine-readable debian/copyright).
  * Update standards version to 4.5.0, no changes needed.

  [ Pirate Praveen ]
  * Use node-rollup-plugin-terser (now available in the archive)
  * Bump Standards-Version to 4.5.1 (no changes needed)
  * Add node-d3-queue to !nocheck build profile

 -- Pirate Praveen <email address hidden>  Tue, 15 Dec 2020 17:50:33 +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

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
d3-format_1.4.1-3.dsc 2.2 KiB 04f92d99a3f6caac64bcea4b51a0822ddc0481b8eae93e1be3a1018e9cb14d2f
d3-format_1.4.1.orig.tar.gz 40.6 KiB cca7639ccdee1c1744dd55c8a75c4b9b1e7c4507709401b4b05fa442c6d3b25b
d3-format_1.4.1-3.debian.tar.xz 4.6 KiB ac08173a630623b376931e7fe92d37af0b757dbfe4db7ede37c5413ccda55609

Available diffs

No changes file available.

Binary packages built by this source

libjs-d3-format: No summary available for libjs-d3-format in ubuntu hirsute.

No description available for libjs-d3-format in ubuntu hirsute.

node-d3-format: Formatting numbers for human consumption - NodeJS module

 Sometimes JavaScript doesn’t display numbers the way you expect. For example,
 printing tenths with a naive simple loop might give you 0, 0.1, 0.2,
 0.30000000000000004, 0.4, 0.5, 0.6000000000000001, 0.7000000000000001, 0.8,
 0.9 - welcome to binary floating point!
 .
 Yet rounding error is not the only reason to customize number formatting. A
 table of numbers should be formatted consistently for comparison; above, 0.0
 would be better than 0. Large numbers should have grouped digits (e.g.,
 42,000) or be in scientific or metric notation (4.2e+4, 42k). Currencies
 should have fixed precision ($3.50). Reported numerical results should be
 rounded to significant digits (4021 becomes 4000). Number formats should
 appropriate to the reader’s locale (42.000,00 or 42,000.00). The list goes on.
 .
 Formatting numbers for human consumption is the purpose of d3-format, which is
 modeled after Python 3’s format specification mini-language (PEP 3101).
 .
 This package contains the NodeJS package.