UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

12 lines (7 loc) 221 B
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 }