Skip to content

Commit 7a8de91

Browse files
committed
fix(compiler): handle negative length in codeframe repeat
1 parent 173042b commit 7a8de91

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/compiler/codeframe.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ export function generateCodeFrame (
3838

3939
function repeat (str, n) {
4040
let result = ''
41-
while (true) { // eslint-disable-line
42-
if (n & 1) result += str
43-
n >>>= 1
44-
if (n <= 0) break
45-
str += str
41+
if (n > 0) {
42+
while (true) { // eslint-disable-line
43+
if (n & 1) result += str
44+
n >>>= 1
45+
if (n <= 0) break
46+
str += str
47+
}
4648
}
4749
return result
4850
}

0 commit comments

Comments
 (0)