-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcodepointRange.js
42 lines (38 loc) · 1003 Bytes
/
codepointRange.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
class CodepointRange {
constructor() {
this.builder = []
this.setStart = null
this.setStride = null
this.lastInSet = null
}
add(codepoint) {
if (this.setStart === null) {
this.setStart = codepoint
} else if (this.setStride === null) {
this.setStride = codepoint - this.lastInSet
} else if (codepoint - this.lastInSet !== this.setStride) {
// gotta start a new set
this.builder.push([this.setStart, this.lastInSet, this.setStride])
this.setStart = codepoint
this.setStride = null
}
this.lastInSet = codepoint
}
addAll(codepoints) {
const sortedCodepoints = Array.from(codepoints).sort((a, b) => a - b)
for (const i of sortedCodepoints) {
this.add(i)
}
}
finish() {
if (this.setStart !== null) {
this.builder.push([
this.setStart,
this.lastInSet,
this.setStride === null ? 1 : this.setStride
])
}
return this.builder
}
}
export { CodepointRange }