File: control

package info (click to toggle)
jquery-throttle-debounce 1.1%2Bdfsg.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 160 kB
  • sloc: javascript: 241; php: 104; makefile: 24
file content (36 lines) | stat: -rw-r--r-- 1,353 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Source: jquery-throttle-debounce
Maintainer: Ben Finney <bignose@debian.org>
Section: javascript
Priority: optional
Build-Depends:
    uglifyjs,
    debhelper-compat (= 13)
Standards-Version: 4.6.0
Homepage: http://benalman.com/projects/jquery-throttle-debounce-plugin/
VCS-Git: https://salsa.debian.org/bignose/pkg-jquery-throttle-debounce.git
VCS-Browser: https://salsa.debian.org/bignose/pkg-jquery-throttle-debounce/
Rules-Requires-Root: no

Package: libjs-jquery-throttle-debounce
Architecture: all
Depends:
    ${misc:Depends}
Recommends:
    javascript-common
Description: 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.