UNPKG

@v4fire/core

Version:
15 lines (10 loc) 281 B
# core/async/modules/timers This module provides Async wrappers for timer functions, like, `setTimeout`, `setInterval` and `requestIdleCallback`. ```js import Async from 'core/async'; const watcher = new Async(); watcher.setTimeout(() => { console.log('bla'); }, 100); ```