-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfmap.js
66 lines (48 loc) · 899 Bytes
/
fmap.js
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
class FMap {
m = new Map()
has(key) {
return this.m.has(key)
}
size(key) {
if (!this.has(key)) return 0
return this.m.get(key).length
}
get(key) {
return this.m.get(key)
}
getLast(key) {
if (this.has(key)) {
return this.get(key)[this.size(key) > 0 ? this.size(key) - 1 : 0]
}
return null
}
set(key, value) {
this.m.set(key, value)
return this
}
setLast(key, value) {
if (this.m.has(key)) {
this.m.set(key, [...this.m.get(key).slice(0, this.size(key)-1), value])
}
}
append(key, value) {
if (this.m.has(key)) {
this.m.set(key, [...this.m.get(key), value])
return this
}
this.m.set(key, [value])
return this
}
remove(key) {
if (this.m.has(key)) {
this.m.delete(key)
}
return this
}
clear() {
this.m.clear()
}
}
module.exports = {
FMap,
}