15a7eafb8
1 2 3 4 5 6 7 8 9 10 11 12
function isPromise (value: any) { return value && typeof value.then === 'function' } function isCatchable (value: any) { return value && typeof value.catch === 'function' } export { isPromise, isCatchable }