HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/node_modules/tap/lib/
Upload File :
Current File : //proc/self/root/usr/share/node_modules/tap/lib/cb-promise.js
// Used by mocha.js, for when we want a callback to pass to
// a child function, but still want to return a Promise.
module.exports = () => {
  let cb
  const p = new Promise((res, rej) => {
    cb = er => er ? rej(er) : res()
  })
  return [cb, p]
}