time-out
v0.0.3
Published
Simple setTimeout cancellation
Downloads
58
Readme
time-out
Timeout is a library that wraps setTimeout to provide an easy way to clear timeouts.
import timeout from 'time-out';
const cancel = timeout(() => console.log('I shall not be called.'), 4000);
cancel();