Skip to content

Commit b1e2a21

Browse files
committed
style: update code style to new indent
1 parent 590e9cd commit b1e2a21

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/parser.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -615,16 +615,16 @@ export default function Parser(options) {
615615
data = xml.substring(j);
616616
} else
617617

618-
// start errors
619-
if (j === 0) {
620-
data = xml.substring(j, i);
621-
}
618+
// start errors
619+
if (j === 0) {
620+
data = xml.substring(j, i);
621+
}
622622

623-
// other errors
624-
else {
625-
column = i - startOfLine;
626-
data = (j == -1 ? xml.substring(i) : xml.substring(i, j + 1));
627-
}
623+
// other errors
624+
else {
625+
column = i - startOfLine;
626+
data = (j == -1 ? xml.substring(i) : xml.substring(i, j + 1));
627+
}
628628

629629
return {
630630
'data': data,

0 commit comments

Comments
 (0)