diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-02-07 23:58:21 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-02-07 23:58:21 +0100 |
commit | 62e68304e9c05bc045feacc5446ed81243f5bb91 (patch) | |
tree | b3ab9503373d7b3e658947c14ef9d97c3f86b942 /lib/utils.js | |
parent | 24d530498dae0991748099694be03b3753d2a7f2 (diff) | |
download | compiler-explorer-62e68304e9c05bc045feacc5446ed81243f5bb91.tar.gz compiler-explorer-62e68304e9c05bc045feacc5446ed81243f5bb91.zip |
Format files
Diffstat (limited to 'lib/utils.js')
-rw-r--r-- | lib/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.js b/lib/utils.js index bf896763c..a7a1b01c0 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -62,7 +62,7 @@ function parseOutput(lines, inputFilename) { if (inputFilename) line = line.split(inputFilename).join('<source>'); if (line !== "" && line.indexOf("fixme:") !== 0) { const lineObj = {text: line}; - const match = line.replace(/\x1b\[[\d;]*[mK]/g,'').match(re); + const match = line.replace(/\x1b\[[\d;]*[mK]/g, '').match(re); if (match) { lineObj.tag = { line: parseInt(match[1]), |