cld / node_modules /yargs /build /lib /utils /is-promise.js
xxsxx's picture
Upload 436 files
14a2165 verified
export function isPromise(maybePromise) {
return (!!maybePromise &&
!!maybePromise.then &&
typeof maybePromise.then === 'function');
}