jquery-throttle-debounce 1.1+dfsg.1-1.1 source package in Ubuntu

Changelog

jquery-throttle-debounce (1.1+dfsg.1-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Mon, 28 Dec 2020 14:52:30 +0100

Upload details

Uploaded by:
Ben Finney
Uploaded to:
Sid
Original maintainer:
Ben Finney
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
jquery-throttle-debounce_1.1+dfsg.1-1.1.dsc 2.0 KiB 64721be1d6d4b835162a0c5043ac5c64fce3ccb1022b22c893e54b6d2afaf555
jquery-throttle-debounce_1.1+dfsg.1.orig.tar.gz 16.6 KiB 8e8e935ca82eb33d0ca1956a989bd5c0a789c9715ee700aeba80c4dc952a8665
jquery-throttle-debounce_1.1+dfsg.1-1.1.debian.tar.xz 4.5 KiB c49145087cf27c93881a20af752d3b56c69f3aa3e44b1347effda22096b7ad40

Available diffs

No changes file available.

Binary packages built by this source

libjs-jquery-throttle-debounce: library of rate-limit wrappers for functions

 jQuery throttle / debounce allows you to rate-limit your functions in
 multiple useful ways:
 .
  * Passing a ‘delay’ and ‘callback’ to ‘$.throttle’ returns a new
    function that will execute no more than once every ‘delay’
    milliseconds.
  * Passing a ‘delay’ and ‘callback’ to ‘$.debounce’ returns a new
    function that will execute only once, coalescing multiple
    sequential calls into a single execution at either the very
    beginning or end.
 .
 jQuery isn’t actually required for this library, because nothing
 internal uses any jQuery methods or properties. jQuery is just used
 as a namespace under which these methods can exist.
 .
 This package installs the runtime library.