From 030cffffffd2cf1487f9282719c3f38edaa19f62 Mon Sep 17 00:00:00 2001 From: RabsRincon Date: Fri, 8 Dec 2017 17:21:58 +0100 Subject: [PATCH] Increase the style points of our filtering Sorry, I had to do this --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 9c1d16a5d..1c9b7346c 100755 --- a/app.js +++ b/app.js @@ -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);