UNPKG
@darwish/is
Version:
latest (0.0.4)
0.0.4
0.0.3
@darwish/is
/
esm
/
isPromise.js
5 lines
(4 loc)
•
118 B
JavaScript
View Raw
1
2
3
4
5
var
isPromise =
function
(
value
) {
return
Promise
.
resolve
(value)
instanceof
Promise
; };
export
default
isPromise;