-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
Replaceable.ts
56 lines (47 loc) · 1.38 KB
/
Replaceable.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
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import getType = require('jest-get-type');
const supportTypes = ['map', 'array', 'object'];
type ReplaceableForEachCallBack = (value: any, key: any, object: any) => void;
export default class Replaceable {
object: any;
type: string;
constructor(object: any) {
this.object = object;
this.type = getType(object);
if (!supportTypes.includes(this.type)) {
throw new Error(`Type ${this.type} is not support in Replaceable!`);
}
}
static isReplaceable(obj1: any, obj2: any): boolean {
const obj1Type = getType(obj1);
const obj2Type = getType(obj2);
return obj1Type === obj2Type && supportTypes.includes(obj1Type);
}
forEach(cb: ReplaceableForEachCallBack): void {
if (this.type === 'object') {
Object.entries(this.object).forEach(([key, value]) => {
cb(value, key, this.object);
});
} else {
this.object.forEach(cb);
}
}
get(key: any): any {
if (this.type === 'map') {
return this.object.get(key);
}
return this.object[key];
}
set(key: any, value: any): void {
if (this.type === 'map') {
this.object.set(key, value);
} else {
this.object[key] = value;
}
}
}