Skip to content

Commit d243bf9

Browse files
committed
Udpate gnuMessage function when no source available
1 parent 93b11cd commit d243bf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ function transform(string) {
4545
* @param {Object} source
4646
*/
4747
function gnuMessage(message, source) {
48-
return (source ? (source.file ? source.file : "<css input>") + ":" + source.start.line + ":" + source.start.column : "") + " " + message
48+
return (source ? (source.file ? source.file : "<css input>") + ":" + source.start.line + ":" + source.start.column + " " : "") + message
4949
}

0 commit comments

Comments
 (0)