UNPKG
rr3-h3-anywhere
Version:
latest (0.0.1)
0.0.1
React router 3 + History 3
github.com/smk291/react-router-3-history-3
rr3-h3-anywhere
/
lib
/
PromiseUtils.js
7 lines
(6 loc)
•
148 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
exports
.
__esModule
=
true
;
exports
.
isPromise
= isPromise;
function
isPromise
(
obj
) {
return
obj &&
typeof
obj.
then
===
'function'
; }