We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aff9c5f commit 3e89751Copy full SHA for 3e89751
index.js
@@ -157,7 +157,7 @@ module.exports = function(css, options){
157
if ('/' != css.charAt(0) || '*' != css.charAt(1)) return;
158
159
var i = 2;
160
- while (null != css.charAt(i) && ('*' != css.charAt(i) || '/' != css.charAt(i + 1))) ++i;
+ while ('' !== css.charAt(i) && ('*' != css.charAt(i) || '/' != css.charAt(i + 1))) ++i;
161
i += 2;
162
163
var str = css.slice(2, i - 2);
0 commit comments