Skip to content

Instantly share code, notes, and snippets.

View bhuvanesh-hotstar's full-sized avatar

bhuvanesh-hotstar

View GitHub Profile
@bhuvanesh-hotstar
bhuvanesh-hotstar / task-generator.js
Last active May 28, 2024 05:52
Task Generator Util
const yieldToMain = () =>
new Promise((resolve) => {
requestAnimationFrame(() => {
setTimeout(resolve);
});
});
class Task {
state = "IDLE";