-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
immutableUtils.ts
62 lines (54 loc) · 1.81 KB
/
immutableUtils.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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
// SENTINEL constants are from https://github.com/immutable-js/immutable-js/tree/main/src/predicates
const IS_KEYED_SENTINEL = '@@__IMMUTABLE_KEYED__@@';
const IS_SET_SENTINEL = '@@__IMMUTABLE_SET__@@';
const IS_LIST_SENTINEL = '@@__IMMUTABLE_LIST__@@';
const IS_ORDERED_SENTINEL = '@@__IMMUTABLE_ORDERED__@@';
const IS_RECORD_SYMBOL = '@@__IMMUTABLE_RECORD__@@';
function isObjectLiteral(source: unknown): source is Record<string, unknown> {
return source != null && typeof source === 'object' && !Array.isArray(source);
}
export function isImmutableUnorderedKeyed(source: unknown): boolean {
return Boolean(
source &&
isObjectLiteral(source) &&
source[IS_KEYED_SENTINEL] &&
!source[IS_ORDERED_SENTINEL],
);
}
export function isImmutableUnorderedSet(source: unknown): boolean {
return Boolean(
source &&
isObjectLiteral(source) &&
source[IS_SET_SENTINEL] &&
!source[IS_ORDERED_SENTINEL],
);
}
export function isImmutableList(source: unknown): boolean {
return Boolean(source && isObjectLiteral(source) && source[IS_LIST_SENTINEL]);
}
export function isImmutableOrderedKeyed(source: unknown): boolean {
return Boolean(
source &&
isObjectLiteral(source) &&
source[IS_KEYED_SENTINEL] &&
source[IS_ORDERED_SENTINEL],
);
}
export function isImmutableOrderedSet(source: unknown): boolean {
return Boolean(
source &&
isObjectLiteral(source) &&
source[IS_SET_SENTINEL] &&
source[IS_ORDERED_SENTINEL],
);
}
export function isImmutableRecord(source: unknown): boolean {
return Boolean(source && isObjectLiteral(source) && source[IS_RECORD_SYMBOL]);
}