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

12 lines
221 B
Plaintext

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
}