node-number-allocator 1.0.11-2 source package in Ubuntu

Changelog

node-number-allocator (1.0.11-2) unstable; urgency=medium

  * Team upload
  * Fix autopkgtest

 -- Yadd <email address hidden>  Sun, 04 Sep 2022 08:50:31 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-number-allocator_1.0.11-2.dsc 2.2 KiB 56b0006afe0ffd5dd0b796aba6a393ad57b7eb169d9a585caedcb2e52083678b
node-number-allocator_1.0.11.orig.tar.gz 8.0 KiB 8dff58e306bd711b9fa8f6e21719ce8032d17e6eb82fad1d3e63344de9cd4a27
node-number-allocator_1.0.11-2.debian.tar.xz 2.9 KiB e661ca7e7fbd06e9264faabf051a831795187628a72cfa625715e1b818244584

Available diffs

No changes file available.

Binary packages built by this source

node-number-allocator: Unique number allocator for JavaScript

 Unique number allocator maintains number intervals that are not in used.
 For an example, users can allocate an interval from 1 to 100. And if
 the user uses 6, the interval will split into two: 1 to 5 and 7 to 100.
 Unique number allocators will tell the users how many intervals we have
 right now. And what number is still vacant to use.
 .
 Node.js is an event-based server-side JavaScript engine.