UNPKG
@typed/is-promise
Version:
latest (1.0.0)
1.0.0
Check if a value is a Promise
github.com/tylors/typed-is-promise
tylors/typed-is-promise
@typed/is-promise
/
lib.es2015
/
index.js
4 lines
•
146 B
JavaScript
View Raw
1
2
3
4
export
function
isPromise
(
p
) {
return
p !==
null
&&
typeof
p ===
'object'
&&
typeof
p.
then
===
'function'
; }
//# sourceMappingURL=index.js.map