1
0
Fork 0
peertube/shared/core-utils/common/promises.ts
2021-07-26 15:04:37 +02:00

12 lines
217 B
TypeScript

function isPromise (value: any) {
return value && typeof value.then === 'function'
}
function isCatchable (value: any) {
return value && typeof value.catch === 'function'
}
export {
isPromise,
isCatchable
}