]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/core-utils/common/promises.ts
Refactor video links builders
[github/Chocobozzz/PeerTube.git] / shared / core-utils / common / promises.ts
CommitLineData
15a7eafb
C
1function isPromise (value: any) {
2 return value && typeof value.then === 'function'
3}
4
5function isCatchable (value: any) {
6 return value && typeof value.catch === 'function'
7}
8
9export {
10 isPromise,
11 isCatchable
12}