File: control

package info (click to toggle)
node-debounce 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 100 kB
  • sloc: javascript: 399; makefile: 7
file content (35 lines) | stat: -rw-r--r-- 1,318 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
Source: node-debounce
Section: javascript
Priority: optional
Maintainer: Home Assistant Team <team+homeassistant@tracker.debian.org>
Uploaders:
 Thomas Goirand <zigo@debian.org>,
Testsuite: autopkgtest-pkg-nodejs
Build-Depends:
 debhelper-compat (= 13),
 dh-nodejs,
 dh-sequence-nodejs,
 openstack-pkg-tools,
Standards-Version: 4.7.2
Homepage: https://github.com/sindresorhus/debounce
Vcs-Git: https://salsa.debian.org/homeassistant-team/js/node-debounce.git
Vcs-Browser: https://salsa.debian.org/homeassistant-team/js/node-debounce
Rules-Requires-Root: no

Package: node-debounce
Architecture: all
Depends:
 ${misc:Depends},
Description: delay function calls until a set time elapses after the last invocation
 This package provides a simple and efficient debounce utility for JavaScript,
 which delays invoking a function until after a specified wait time has elapsed
 since the last time it was invoked. Debouncing is useful for limiting the
 rate at which a function is called, especially in performance-critical or
 event-heavy environments like scrolling, resizing, or keypress handling.
 .
 Features:
  - Small and dependency-free
  - Works in both browser and Node.js environments
  - Supports options for immediate execution and maximum wait times
 .
 This package is primarily intended for use with Node.js.