node-throttleit 1.0.0+~1.0.0-1 source package in Ubuntu

Changelog

node-throttleit (1.0.0+~1.0.0-1) unstable; urgency=medium

  * Team upload

  [ lintian-brush ]
  * Trim trailing whitespace
  * Use secure copyright file specification URI
  * Bump debhelper from deprecated 9 to 13
  * Set debhelper-compat version in Build-Depends
  * Change priority extra to priority optional

  [ Yadd ]
  * Declare compliance with policy 4.6.0
  * Add "Rules-Requires-Root: no"
  * Change section to javascript
  * Fix debian/watch
  * Drop dependency to nodejs
  * Mark test dependencies with <!nocheck>
  * Use dh-sequence-nodejs auto test & install
  * Update VCS fields
  * Embed typescript declarations and repack
  * Back to unstable

 -- Yadd <email address hidden>  Thu, 30 Dec 2021 09:56:39 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe javascript
Noble release universe javascript
Mantic release universe javascript
Lunar release universe javascript
Jammy release universe javascript

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-throttleit_1.0.0+~1.0.0-1.dsc 2.4 KiB eebd9bca6606524231866189729e693f164c6bbae232ec87de400beed6c45548
node-throttleit_1.0.0+~1.0.0.orig-types-throttleit.tar.gz 1.7 KiB df8425625a1e9f4b73d3ba7860843a92547e3ef6afef91133a3d498c45b82d25
node-throttleit_1.0.0+~1.0.0.orig.tar.gz 2.1 KiB 27c407142b5230cadf9b871ca778f4222c728a5b6bf47f4afa63ce3ce50d42d8
node-throttleit_1.0.0+~1.0.0-1.debian.tar.xz 3.1 KiB 94c35c8edd203b64c3d7887592bfb2aa25d96e554244ff4403e63ed978fcb55f

No changes file available.

Binary packages built by this source

node-throttleit: Throttle a function in Node.js

 throttle is a Node.js module to throttle a JavaScript function.
 throttle(fn, wait)
 Creates a function that will call fn at most once every wait milliseconds.
 Supports leading and trailing invocation.
 fn will receive last context (this) and last arguments passed to a
 throttled wrapper before fn was invoked.
 .
 Node.js is an event-based server-side JavaScript engine.