UNPKG

promise-toolbox

Version:
9 lines (7 loc) 164 B
"use strict"; module.exports = function asCallback(cb) { if (typeof cb === "function") { this.then(value => cb(undefined, value), cb); } return this; };