diff options
author | RabsRincon <rubrinbla@gmail.com> | 2017-12-08 17:21:58 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2017-12-08 17:21:58 +0100 |
commit | 030cffffffd2cf1487f9282719c3f38edaa19f62 (patch) | |
tree | d63a9ba425c71af234e948a11fb08c845b360a79 | |
parent | 9aed176b14bc4d1db5fe29540206a9cbdbdab384 (diff) | |
download | compiler-explorer-030cffffffd2cf1487f9282719c3f38edaa19f62.tar.gz compiler-explorer-030cffffffd2cf1487f9282719c3f38edaa19f62.zip |
Increase the style points of our filtering
Sorry, I had to do this
-rwxr-xr-x | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -467,7 +467,7 @@ function findCompilers() { return compilerPropsL(langId, "group." + groupName + "." + propName, parentProps(langId, propName, def)); }; - const compilerExes = props(langId, 'compilers', '').split(":").filter(x=>x); + const compilerExes = props(langId, 'compilers', '').split(":").filter(_.identity); logger.debug("Processing compilers from group " + groupName); return Promise.all(compilerExes.map(function (compiler) { return recurseGetCompilers(langId, compiler, props); |