-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.ts
84 lines (71 loc) · 2.11 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
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
82
83
84
/*
* util.ts
*/
export let print = console.log;
// compare basic type or complex object
export function compare(x, y): boolean {
// If both x and y are null or undefined and exactly the same
if (x === y) {
return true;
}
// If they are not strictly equal, they both need to be Objects
if (!(x instanceof Object) || !(y instanceof Object)) {
return false;
}
//They must have the exact same prototype chain,the closest we can do is
//test the constructor.
if (x.constructor !== y.constructor) {
return false;
}
for (var p in x) {
//Inherited properties were tested using x.constructor === y.constructor
if (x.hasOwnProperty(p)) {
// Allows comparing x[ p ] and y[ p ] when set to undefined
if (!y.hasOwnProperty(p)) {
return false;
}
// If they have the same strict value or identity then they are equal
if (x[p] === y[p]) {
continue;
}
// Numbers, Strings, Functions, Booleans must be strictly equal
if (typeof (x[p]) !== "object") {
return false;
}
// Objects and Arrays must be tested recursively
if (!compare(x[p], y[p])) {
return false;
}
}
}
for (p in y) {
// allows x[ p ] to be set to undefined
if (y.hasOwnProperty(p) && !x.hasOwnProperty(p)) {
return false;
}
}
return true;
};
// deep copy object
export function deepcopy(obj: any): any {
let copy: any;
if (isArray(obj)) {
copy = [];
} else if (isObject(obj)) {
copy ={};
} else {
return obj;
}
let keys = Object.keys(obj);
for(let idx in keys) {
let k = keys[idx];
copy[k] = deepcopy(obj[k]);
}
return copy;
}
export function isArray(obj: any): boolean {
return obj && typeof obj === 'object' && Array == obj.constructor;
}
export function isObject(obj: any): boolean {
return obj && typeof obj === 'object' && Object == obj.constructor;
}