node-uniq 1.0.1-2 source package in Ubuntu

Changelog

node-uniq (1.0.1-2) unstable; urgency=medium

  [ Xavier Guimard ]
  * Team upload
  * Bump debhelper compatibility level to 12
  * Declare compliance with policy 4.5.0
  * Add "Rules-Requires-Root: no"
  * Add debian/gbp.conf
  * Update debian/watch to use npm registry
  * Add upstream/metadata
  * Use pkg-js-tools auto test & install
  * Update VCS fields to salsa

  [ Nilesh Patra ]
  * Make test more robust, to pass with Node.js >= 12

 -- Xavier Guimard <email address hidden>  Fri, 24 Jan 2020 20:38:02 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-uniq_1.0.1-2.dsc 2.0 KiB f290cf7ad018da582785bb9ea695d35c7233f7a30a576980609eb926f80bbb1e
node-uniq_1.0.1.orig.tar.gz 2.2 KiB 2e71598a50822caa9096d140f2269545e02e844311d861d62d6e9ecc57d4a9fc
node-uniq_1.0.1-2.debian.tar.xz 2.8 KiB fe0a22105f585f11a200854ad826fd1587c611ec163ec7102acc3eced50dbcd5

Available diffs

No changes file available.

Binary packages built by this source

node-uniq: Node.js module to remove duplicates from a sorted array in place

 Why use this instead of underscore.uniq[ue]?
 A few reasons:
  * This library updates the array in place without making an extra copy (and
 so it is faster for large arrays)
  * It also accepts a custom comparison function so you can remove duplicates
 from arrays containing object
  * It is more modular in the sense that it doesn't come with a bazillion other
 utility grab bag functions.
 .
 Node.js is an event-based server-side JavaScript engine.