UNPKG
@darwish/utils-core
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
@darwish/utils-core
/
lib
/
is
/
isPromise.js
7 lines
(6 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
isPromise =
function
(
value
) {
return
Promise
.
resolve
(value)
instanceof
Promise
; };
exports
.
default
= isPromise;