Sign in
cobalt
/
cobalt
/
06bc150b8e0bd2400de19670f6ff4a490860da44
/
.
/
src
/
third_party
/
devtools
/
node_modules
/
yargs
/
lib
/
is-promise.js
blob: 271d93b2d121a2289683d57160765cc54b472eac [
file
]
module
.
exports
=
function
isPromise
(
maybePromise
)
{
return
!!
maybePromise
&&
!!
maybePromise
.
then
&&
(
typeof
maybePromise
.
then
===
'function'
)
}