Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
is-promise
/
index.js
blob: ca2444c6f69540f83504b8f54f4518af0ffc4cd5 [
file
] [
log
] [
blame
]
module
.
exports
=
isPromise
;
function
isPromise
(
obj
)
{
return
!!
obj
&&
(
typeof
obj
===
'object'
||
typeof
obj
===
'function'
)
&&
typeof
obj
.
then
===
'function'
;
}