mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
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
|
|
}
|