mirror of
https://github.com/azure/login.git
synced 2026-06-07 18:17:07 +00:00
5 lines
155 B
JavaScript
5 lines
155 B
JavaScript
export function isPromise(maybePromise) {
|
|
return (!!maybePromise &&
|
|
!!maybePromise.then &&
|
|
typeof maybePromise.then === 'function');
|
|
}
|