mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 15:58:09 +03:00
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
|
import { isFunction } from '@nestjs/common/utils/shared.utils';
|
||
|
|
||
|
export function isObservable(result: any): boolean {
|
||
|
return result && isFunction(result.subscribe);
|
||
|
}
|