-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathutil.ts
43 lines (33 loc) · 1.21 KB
/
util.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* @license Use of this source code is governed by an MIT-style license that
* can be found in the LICENSE file at https://github.com/cartant/rxjs-etc
*/
import { Observable, OperatorFunction, SchedulerLike } from "rxjs";
export type ObservableValue<T> = T extends Observable<infer U> ? U : never;
export type ObservableValues<T> = { [K in keyof T]: ObservableValue<T[K]> };
// https://github.com/ReactiveX/rxjs/issues/4632#issuecomment-481815411
export type Op<T> = OperatorFunction<any, T>;
export function isNonNulled<T>(value: T): value is NonNullable<T> {
return value != null;
}
/** @deprecated Renamed to isNonNulled */
export const isNotNullish = isNonNulled;
export function isNulled<T>(
value: T | null | undefined
): value is null | undefined {
return value == null;
}
/** @deprecated Renamed to isNulled */
export const isNullish = isNulled;
export function isObservable(value: any): value is Observable<any> {
return Boolean(
value &&
typeof value === "object" &&
typeof value["subscribe"] === "function"
);
}
export function isScheduler(
value: object | null | undefined
): value is SchedulerLike {
return Boolean(value && typeof (value as any)["schedule"] === "function");
}