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 0700e15 commit cbf8ed9Copy full SHA for cbf8ed9
index.js
@@ -17,7 +17,7 @@ module.exports = function(css, options){
17
var lines = str.match(/\n/g);
18
if (lines) lineno += lines.length;
19
var i = str.lastIndexOf('\n');
20
- column = ~i ? str.length-i : column + str.length;
+ column = ~i ? str.length - i : column + str.length;
21
}
22
23
/**
@@ -142,6 +142,7 @@ module.exports = function(css, options){
142
updatePosition(str);
143
css = css.slice(i);
144
column += 2;
145
+
146
return pos({
147
type: 'comment',
148
comment: str
0 commit comments