bpms_site/.svn/pristine/b9/b9df43d7d6b9a19c5c5829c8dc4179415dec748e.svn-base
2025-11-02 16:38:49 +03:30

16 lines
678 B
Plaintext

/**
* Schedules a function to be called on the next tick after the other promises
* have been resolved.
*/ export function scheduleOnNextTick(cb) {
// We use Promise.resolve().then() here so that the operation is scheduled at
// the end of the promise job queue, we then add it to the next process tick
// to ensure it's evaluated afterwards.
//
// This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255
//
Promise.resolve().then(()=>{
process.nextTick(cb);
});
}
//# sourceMappingURL=schedule-on-next-tick.js.map