Edit file File name : is-promise.js Content :module.exports = function isPromise (maybePromise) { return !!maybePromise && !!maybePromise.then && (typeof maybePromise.then === 'function') } Save