diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-06-15 15:04:55 +0200 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-06-15 15:04:55 +0200 |
commit | 7c18ffe8cf1a0900f101d4cbf135814ea9cfea28 (patch) | |
tree | d33fd13c5ef6141293dec45f59f73078a867122d /lib/compilers/golang.js | |
parent | 96c93c6bf3e125da3326081e5626e3e765e8a36e (diff) | |
download | compiler-explorer-7c18ffe8cf1a0900f101d4cbf135814ea9cfea28.tar.gz compiler-explorer-7c18ffe8cf1a0900f101d4cbf135814ea9cfea28.zip |
Drop underscore-node in favour of underscore.js
After some suprises about how outdated the node version was compared to
the main project, it became clear we needed to do something.
@jaredwy suggested using the main project as there's now nothing
stopping us from using it after the switch to webpack.
cc @mattgodbolDrop underscore-node in favour of underscore.js
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r-- | lib/compilers/golang.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js index 94c84e964..94e838ef5 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -23,7 +23,7 @@ // POSSIBILITY OF SUCH DAMAGE. const BaseCompiler = require('../base-compiler'), - _ = require('underscore-node'); + _ = require('underscore'); class GolangCompiler extends BaseCompiler { convertNewGoL(code) { @@ -55,7 +55,7 @@ class GolangCompiler extends BaseCompiler { return null; } } - + })).join("\n"); } |