with-cooldown

1.0.0 • Public • Published

with-cooldown

Build Status Greenkeeper badge Stops calls to the supplied method happening for a cooldown period.
The initial call will go through, and for the timeout given all further calls will be immediately returned.

Multiple calls are not replayed after the cooldown.

This module works both with and without decorators, however decorators are the primary tested use-case.

Example

function syntax
import withCooldown from './with-cooldown';
 
const foo = withCooldown(100, () => console.log('Only call me once in 100ms'));
 
foo(); // => Only call me once
foo(); // immediate return
decorator syntax
class Foo {
    @withCooldown(100)
    bar() {
        console.log('Only call me once in 100ms');
    }
}
 
const foo = new Foo();
 
foo.bar(); // => Only call me once
foo.bar(); // immediate return

Contributing

Contributions are welcome.
Pull requests will not be merged without related unit tests.

Package Sidebar

Install

npm i with-cooldown

Weekly Downloads

2

Version

1.0.0

License

ISC

Last publish

Collaborators

  • jahredhope