wishthis/node_modules/rxjs/_esm2015/internal/util/isPromise.js
2022-01-21 09:28:41 +01:00

4 lines
No EOL
171 B
JavaScript

export function isPromise(value) {
return !!value && typeof value.subscribe !== 'function' && typeof value.then === 'function';
}
//# sourceMappingURL=isPromise.js.map