This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
import { promise as queueAsPromised } from './queue.js'
|
|
|
|
/* eslint-disable */
|
|
|
|
const queue = queueAsPromised(worker, 1)
|
|
|
|
console.log('the result is', await queue.push(42))
|
|
|
|
async function worker (arg) {
|
|
return 42 * 2
|
|
}
|