-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetho-set.js
79 lines (66 loc) · 1.28 KB
/
metho-set.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
67
68
69
70
71
72
73
74
75
76
77
78
79
import * as Metho from "metho"
const target = Set.prototype
// Union
export const union = Metho.add(
target,
function union(set) {
return new Set([...this, ...set])
}
)
// Intersection
export const intersect = Metho.add(
target,
function intersect(set) {
return new Set([...this].filter(i=>set.has(i)))
}
)
// Difference
export const difference = Metho.add(
target,
function difference(set) {
return new Set([...this].filter(i=>!set.has(i)))
}
)
// Map items
export const map = Metho.add(
target,
function map(fn) {
return new Set([...this].map(i => fn(i, i, this)))
}
)
// Filter
export const filter = Metho.add(
target,
function filter(fn) {
return new Set([...this].filter(i => fn(i, i, this)))
}
)
// Some
export const some = Metho.add(
target,
function some(fn) {
return [...this].some(i => fn(i, i, this))
}
)
// Every
export const every = Metho.add(
target,
function every(fn) {
return [...this].every(i => fn(i, i, this))
}
)
// Group by
export const groupBy = Metho.add(
target,
function groupBy(fn) {
const result = Object.create(null)
this.forEach(i => {
const key = fn(i)
if (!result[key]) {
result[key] = new Set()
}
result[key].add(i)
}, {})
return result
}
)