Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
p-is-promise
/
index.js
blob: 8f64f85804a7bc502cb1f410582f2f1d28986e43 [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
x
=>
(
x instanceof
Promise
||
(
x
!==
null
&&
typeof
x
===
'object'
&&
typeof
x
.
then
===
'function'
&&
typeof
x
.
catch
===
'function'
)
);