From 251197252cec08949548747c7df2b59083be7d78 Mon Sep 17 00:00:00 2001 From: Cade Scroggins Date: Tue, 25 Apr 2017 17:38:49 -0700 Subject: [PATCH] remove unnecessary variable --- index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.html b/index.html index a85119d..3597370 100644 --- a/index.html +++ b/index.html @@ -561,8 +561,7 @@ CONFIG.categories .map(category => category.commands) .forEach(commands => commands.forEach(command => { - let done = callback(command); - if (done) return; + if (callback(command)) return; })); }