Skip to content

Commit e0c7b73

Browse files
committed
Udpate gnuMessage function when no source available
1 parent 134743f commit e0c7b73

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
@@ -69,5 +69,5 @@ function transformColor(string, source) {
6969
* @param {Object} source
7070
*/
7171
function gnuMessage(message, source) {
72-
return (source ? (source.file ? source.file : "<css input>") + ":" + source.start.line + ":" + source.start.column : "") + " " + message
72+
return (source ? (source.file ? source.file : "<css input>") + ":" + source.start.line + ":" + source.start.column + " " : "") + message
7373
}

0 commit comments

Comments
 (0)