UNPKG
react-metrics
Version:
latest (2.4.1)
2.4.1
2.4.0
2.3.2
2.3.1
2.3.0
2.2.3
2.2.2
2.2.1
2.1.1
2.1.0
2.0.0
1.2.1
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-rc2
1.0.0-rc1
An analytics library for React.js
github.com/nfl/react-metrics
nfl/react-metrics
react-metrics
/
lib
/
core
/
utils
/
isPromise.js
8 lines
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= isPromise;
// to support Promise-like object.
function
isPromise
(
value
) {
return
value &&
typeof
value.
then
===
"function"
; }