-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
81 lines (71 loc) · 2.3 KB
/
utils.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { Subscription, SubscriptionLike, CleanUp } from "./Subscription.ts";
import { Observer } from "./Observer.ts";
export function isSubscriptionLike(
subscription: any,
): subscription is SubscriptionLike {
return typeof subscription === "object" && subscription !== null &&
typeof subscription.unsubscribe === "function" &&
typeof subscription.closed === "boolean";
}
export function isSubscription(
subscription: any,
): subscription is Subscription {
return subscription instanceof Subscription;
}
export function iscleanUp(
cleanUp: any,
): cleanUp is CleanUp {
return isSubscriptionLike(cleanUp) ||
typeof cleanUp === "function";
}
export function isObserver<V = unknown>(
observer: any,
): observer is Observer<V> {
const isFunctonOrUndefined = (fn?: Function) =>
typeof fn === "undefined" || typeof fn === "function";
return typeof observer === "object" &&
observer !== null &&
isFunctonOrUndefined(observer.complete) &&
isFunctonOrUndefined(observer.error) &&
isFunctonOrUndefined(observer.next) &&
isFunctonOrUndefined(observer.start);
}
export function assertIsSubscription(
subscription: any,
msg: string = "value doesn't follow Subscription interface",
): asserts subscription is Subscription {
if (!isSubscriptionLike(subscription)) throw new TypeError(msg);
}
export function assertIsSubscriptionLike(
subscription: any,
msg: string = "value doesn't follow SubscriptionLike interface",
): asserts subscription is SubscriptionLike {
if (!isSubscriptionLike(subscription)) throw new TypeError(msg);
}
export function assertIsCleanUp(
cleanUp: any,
msg: string = "value doesn't follow CleanUp type",
): asserts cleanUp is CleanUp {
if (!iscleanUp(cleanUp)) throw new TypeError(msg);
}
export function assertIsObserver<V = unknown>(
observer: any,
msg: string = "value doesn't follow Observer interface",
): asserts observer is Observer<V> {
if (!isObserver(observer)) {
throw new TypeError(msg);
}
}
export function assertIsOptionanlFunction(
fn: any,
msg: string = "value is not an optional function",
): asserts fn is (Function | undefined) {
if (typeof fn !== "function" && typeof fn !== "undefined") {
throw new TypeError(msg);
}
}
export function hostReportError(error: unknown) {
setTimeout(() => {
throw error;
}, 0);
}