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