-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
102 lines (83 loc) · 1.98 KB
/
index.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
'use strict'
split.split = split
split.width = width
module.exports = split
function split(text, columns){
const rows = []
let rowBuffer = ''
let rowBufferLength = 0
let wordBuffer = ''
let wordBufferLength = 0
let spillBuffer = ''
let spillBufferLength = 0
for (const char of text.normalize()){
const code = char.codePointAt()
if (code <= 32) {
if (spillBufferLength > 0) {
rows.push(rowBuffer)
if (wordBufferLength + spillBufferLength === columns || code === 10) {
rows.push(wordBuffer+spillBuffer)
rowBuffer = ''
rowBufferLength = 0
} else {
rowBuffer = wordBuffer+spillBuffer+char
rowBufferLength = wordBufferLength + spillBufferLength + 1
}
spillBuffer = ''
spillBufferLength = 0
} else {
if (rowBufferLength + wordBufferLength === columns || code === 10) {
rows.push(rowBuffer+wordBuffer)
rowBuffer = ''
rowBufferLength = 0
} else {
rowBuffer += wordBuffer+char
rowBufferLength += wordBufferLength + 1
}
}
wordBuffer = ''
wordBufferLength = 0
} else {
if (rowBufferLength + wordBufferLength < columns) {
wordBuffer += char
wordBufferLength++
} else if (wordBufferLength + spillBufferLength === columns) {
rows.push(rowBuffer+wordBuffer)
rowBuffer = ''
rowBufferLength = 0
if (spillBufferLength === columns) {
rows.push(spillBuffer)
wordBuffer = char
wordBufferLength = 1
} else {
wordBuffer = spillBuffer+char
wordBufferLength = spillBufferLength + 1
}
spillBuffer = ''
spillBufferLength = 0
} else {
spillBuffer += char
spillBufferLength++
}
}
}
if (spillBufferLength > 0) {
rows.push(rowBuffer, wordBuffer+spillBuffer)
} else {
rows.push(rowBuffer+wordBuffer)
}
return rows
}
function width(text, max){
let i = 0
let u = 0
for (const char of text.normalize()) {
if (char === '\n') {
u = i > u ? i : u
i = 0
} else if (++i === max) {
return max
}
}
return i > u ? i : u
}