@v4fire/core
Version:
V4Fire core library
25 lines (15 loc) • 292 B
Markdown
# core/async/modules/base
This module provides the base class for the Async module.
```js
import Async from 'core/async';
const
watcher = new Async();
// ...
watcher.muteAll();
// ...
watcher.unmuteAll();
watcher.suspendAll();
// ..
watcher.unsuspendAll();
watcher.clearAll();
```