📜  节点 fs 流管道承诺 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:41.642000             🧑  作者: Mango

代码示例1
Promise.all(promises).then(async (responses) => {
  for (...) {
    await new Promise(fulfill => stream.on("finish", fulfill));
    //extract the text out of the PDF
  }
})