mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-09 07:18:13 -07:00
5 lines
155 B
JavaScript
5 lines
155 B
JavaScript
export function isPromise(maybePromise) {
|
|
return (!!maybePromise &&
|
|
!!maybePromise.then &&
|
|
typeof maybePromise.then === 'function');
|
|
}
|