d3-format 1.0.2-2 source package in Ubuntu

Changelog

d3-format (1.0.2-2) unstable; urgency=medium

  * Use debhelper compat level 10.
  * Correct binary packages from arch:any to arch:all.
  * Use node-tap to run tests, instead of node-tape.

 -- Ximin Luo <email address hidden>  Mon, 21 Nov 2016 02:21:00 +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

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
d3-format_1.0.2-2.dsc 2.1 KiB 5fca79072eec7caaec454c06ec17e31d18247074b2c54879ed0a04757d5276bc
d3-format_1.0.2.orig.tar.gz 17.8 KiB 3e2cb90e685d676d98d22ad91dc002cfde15ba365ac882fd7cb6dcce6af3b260
d3-format_1.0.2-2.debian.tar.xz 4.6 KiB e095358a9359d7faa077039033de276cdcdc60959e728d52082bbce4c3d1ea27

No changes file available.

Binary packages built by this source

libjs-d3-format: Formatting numbers for human consumption - browser library

 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 plain JS library as well as a minified version.

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.