21 lines
392 B
JavaScript
21 lines
392 B
JavaScript
|
import { stepsOrder } from './batcher.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 };
|