Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 99dbf8c

Browse files
committed
Fix another feedback.
1 parent 870e99a commit 99dbf8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/language/CSSUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ define(function (require, exports, module) {
360360

361361
// Skip the ":" and any leading whitespace
362362
while (TokenUtils.moveNextToken(startCtx)) {
363-
if (startCtx.token.string.trim().length > 0) {
363+
if (startCtx.token.string.trim()) {
364364
break;
365365
}
366366
}

0 commit comments

Comments
 (0)