Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
p-is-promise
/
index.js
blob: 8f64f85804a7bc502cb1f410582f2f1d28986e43 [
file
] [
log
] [
blame
]
Leo Repp
58b9f11
2021-11-22 11:57:47 +0100
[
diff
] [
blame^
]
1
'use strict'
;
2
module
.
exports
=
x
=>
(
3
x instanceof
Promise
||
4
(
5
x
!==
null
&&
6
typeof
x
===
'object'
&&
7
typeof
x
.
then
===
'function'
&&
8
typeof
x
.
catch
===
'function'
9
)
10
);