astro-ghostcms/.pnpm-store/v3/files/00/5b735c8ef18dd98cb6923f808a2...

12 lines
221 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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
}