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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
pub fn minify_js(code: &str) -> String {
let mut result = String::with_capacity(code.len());
let mut chars = code.chars().peekable();
let mut in_string = false;
let mut string_delim = '\0';
let mut in_single_comment = false;
let mut in_multi_comment = false;
let mut prev_char: Option<char> = None;
while let Some(c) = chars.next() {
// --- Single-line comments ---
if in_single_comment {
if c == '\n' {
in_single_comment = false;
}
continue;
}
// --- Multi-line comments ---
if in_multi_comment {
if c == '*' && chars.peek() == Some(&'/') {
chars.next();
in_multi_comment = false;
}
continue;
}
// --- Strings / template literals ---
if in_string {
result.push(c);
if c == '\\' {
if let Some(next) = chars.next() {
result.push(next);
}
continue;
}
if c == string_delim {
in_string = false;
}
prev_char = Some(c);
continue;
}
if c == '"' || c == '\'' || c == '`' {
in_string = true;
string_delim = c;
result.push(c);
prev_char = Some(c);
continue;
}
// --- Comment detection ---
if c == '/' {
match chars.peek() {
Some('/') => {
chars.next();
in_single_comment = true;
continue;
}
Some('*') => {
chars.next();
in_multi_comment = true;
continue;
}
_ => {}
}
}
// --- Whitespace handling ---
if c.is_whitespace() {
let next = chars.peek().copied();
// Only keep space if merging identifiers/numbers
if let (Some(prev), Some(next)) = (prev_char, next) {
if (prev.is_alphanumeric() || prev == '_')
&& (next.is_alphanumeric() || next == '_')
{
result.push(' ');
prev_char = Some(' ');
}
}
continue;
}
// --- Remove space before punctuation ---
if "{}[]();,:+-*/%=<>!&|^~?".contains(c) {
if result.ends_with(' ') {
result.pop();
}
}
result.push(c);
prev_char = Some(c);
}
result.trim().to_string()
}
pub fn format_js(code: &str) -> String {
let mut result = String::new();
let mut chars = code.chars().peekable();
let mut indent_level = 0;
let indent = " ";
let mut in_string = false;
let mut string_delim = '\0';
let mut in_template = false;
let mut in_comment = false;
let mut paren_depth: i32 = 0;
while let Some(c) = chars.next() {
// Handle comments
if in_comment {
result.push(c);
if c == '\n' {
in_comment = false;
result.push_str(&indent.repeat(indent_level));
}
continue;
}
if c == '/' && chars.peek() == Some(&'/') {
result.push_str("//");
chars.next();
in_comment = true;
continue;
}
// Handle strings
if in_string {
result.push(c);
if c == '\\' {
if let Some(next) = chars.next() {
result.push(next);
}
continue;
}
if c == string_delim {
in_string = false;
}
continue;
}
// Handle template literals
if in_template {
result.push(c);
if c == '\\' {
if let Some(next) = chars.next() {
result.push(next);
}
continue;
}
if c == '`' {
in_template = false;
}
continue;
}
if c == '"' || c == '\'' {
in_string = true;
string_delim = c;
result.push(c);
continue;
}
if c == '`' {
in_template = true;
result.push(c);
continue;
}
// Handle operators and punctuation
if c == '=' {
// Check for arrow function =>
if chars.peek() == Some(&'>') {
chars.next(); // consume '>'
result.push_str("=>");
continue;
}
// Check for == or ===
if chars.peek() == Some(&'=') {
result.push_str("==");
chars.next();
if chars.peek() == Some(&'=') {
result.push('=');
chars.next();
}
continue;
}
result.push_str(" = ");
continue;
}
if c == '!' {
if chars.peek() == Some(&'=') {
result.push('!');
chars.next();
if chars.peek() == Some(&'=') {
result.push_str("==");
chars.next();
} else {
result.push('=');
}
continue;
} else {
result.push('!');
continue;
}
}
match c {
'{' => {
result.push_str(" {\n");
indent_level += 1;
result.push_str(&indent.repeat(indent_level));
}
'}' => {
indent_level = indent_level.saturating_sub(1);
result.push('\n');
result.push_str(&indent.repeat(indent_level));
result.push('}');
if chars.peek() != Some(&';') {
result.push('\n');
result.push_str(&indent.repeat(indent_level));
}
}
'(' => {
paren_depth += 1;
result.push('(');
}
')' => {
paren_depth = paren_depth.saturating_sub(1);
result.push(')');
}
';' => {
result.push(';');
if paren_depth == 0 {
result.push('\n');
result.push_str(&indent.repeat(indent_level));
} else {
result.push(' ');
}
}
',' => {
result.push_str(", ");
}
c if c.is_whitespace() => {
if !result.ends_with(' ') && !result.ends_with('\n') {
result.push(' ');
}
}
_ => result.push(c),
}
}
result
.lines()
.map(|line| line.trim_end())
.collect::<Vec<_>>()
.join("\n")
}