await-q
v1.0.4
Published
Await pop value from queue. If is there, return it. Otherwise, wait until new value.
Readme
AwaitQ
Await pop value from queue. If is there, return it. Otherwise, wait until new value.
Example
import { AwaitQ } from "await-q";
const queue = new AwaitQ();
setTimeout(() => queue.push("await-q"), 5000);
const packageName = await queue.pop();