persona-community-5/.pnpm-store/v3/files/d8/931b3599954c5bdf2db7ec5772c41434d1e8b3712eee57d8b66eb60f6ad95d927238aba1334b03f9ed7a2fa46a639c19723025c91cfd5435fcb1684028d862
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

10 lines
199 B
Plaintext

import { promise as queueAsPromised } from './queue.js'
const queue = queueAsPromised(worker, 1)
console.log('the result is', await queue.push(42))
async function worker (arg) {
return 42 * 2
}