UNPKG

timing-functions

Version:

Set of universal utility functions around timing and scheduling in JavaScript

10 lines (8 loc) 257 B
import _sleep from './sleep'; import _frame from './frame'; import _schedule from './schedule'; import _timeout from './timeout'; export const sleep = _sleep; export const frame = _frame; export const schedule = _schedule; export const timeout = _timeout;