Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

12345678910111213141516171819202122232425
  1. 'use strict'
  2. exports.fromCallback = function (fn) {
  3. return Object.defineProperty(function () {
  4. if (typeof arguments[arguments.length - 1] === 'function') fn.apply(this, arguments)
  5. else {
  6. return new Promise((resolve, reject) => {
  7. arguments[arguments.length] = (err, res) => {
  8. if (err) return reject(err)
  9. resolve(res)
  10. }
  11. arguments.length++
  12. fn.apply(this, arguments)
  13. })
  14. }
  15. }, 'name', { value: fn.name })
  16. }
  17. exports.fromPromise = function (fn) {
  18. return Object.defineProperty(function () {
  19. const cb = arguments[arguments.length - 1]
  20. if (typeof cb !== 'function') return fn.apply(this, arguments)
  21. else fn.apply(this, arguments).then(r => cb(null, r), cb)
  22. }, 'name', { value: fn.name })
  23. }