mirror of
https://github.com/azure/login.git
synced 2026-06-06 12:17:07 +00:00
3 lines
147 B
JavaScript
3 lines
147 B
JavaScript
module.exports = function isPromise (maybePromise) {
|
|
return !!maybePromise && !!maybePromise.then && (typeof maybePromise.then === 'function')
|
|
}
|