版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

12 行
221 B

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