Sign in
cobalt
/
cobalt.git
/
04cd6faca4dd5039a1b810e9ba7b7a79e51a781d
/
.
/
src
/
cobalt
/
debug
/
remote
/
devtools
/
node_modules
/
is-promise
/
index.js
blob: ca2444c6f69540f83504b8f54f4518af0ffc4cd5 [
file
]
module
.
exports
=
isPromise
;
function
isPromise
(
obj
)
{
return
!!
obj
&&
(
typeof
obj
===
'object'
||
typeof
obj
===
'function'
)
&&
typeof
obj
.
then
===
'function'
;
}