| 1234567891011121314151617181920 |
- import { stepsOrder } from './order.mjs';
- import { frame, cancelFrame } from './frame.mjs';
- /**
- * @deprecated
- *
- * Import as `frame` instead.
- */
- const sync = frame;
- /**
- * @deprecated
- *
- * Use cancelFrame(callback) instead.
- */
- const cancelSync = stepsOrder.reduce((acc, key) => {
- acc[key] = (process) => cancelFrame(process);
- return acc;
- }, {});
- export { cancelSync, sync };
|