
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
debounce-decorator-ts
Advanced tools
Simple function debounce decorator written in Typescript.
An live example of function use: Live Example
Install package by npm
npm install --save-dev debounce-decorator-ts
SYNTAX
@debounceFn(debounceTime, timeoutPropertyName);
Properties
debounceTime
Action: Setting debounceTimer
Default value: 100 (ms)
Argument type: number ( miliseconds )
timeoutPropertyName
Action: Setting timeout property name ( for clearTimeout )
Default value: 'timeoutFn'
Argument type: string
Basic usage
import { debounceFn } from "debounce-decorator-ts";
class MyClass {
constructor() {
window.addEventListener('resize', this.onResizeFn.bind(this));
}
@debounceFn()
private onResizeFn(e: Event): void {
console.log('resized!');
}
}
const myClass = new MyClass;
Override default properties value
import { debounceFn } from "debounce-decorator-ts";
class MyClass {
constructor() {
window.addEventListener('resize', this.onResizeFn.bind(this));
}
@debounceFn(1000, 'myCustomTimeoutPropertyName')
private onResizeFn(e: Event): void {
console.log('resized!');
}
}
const myClass = new MyClass;
MIT License
FAQs
Simple debounce decorator for functions
The npm package debounce-decorator-ts receives a total of 101 weekly downloads. As such, debounce-decorator-ts popularity was classified as not popular.
We found that debounce-decorator-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.