From 8a582fcf8d01cbac8b14e83780e18d9c39a2d847 Mon Sep 17 00:00:00 2001 From: Andrew Stewart Date: Mon, 13 Jul 2015 14:08:21 -0700 Subject: [PATCH] _.arity call no longer necessary --- lib/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api.js b/lib/api.js index b2cc72b..94a51e5 100644 --- a/lib/api.js +++ b/lib/api.js @@ -38,7 +38,7 @@ api.create = function create(Server, opts) { [ "Cannot find the " + req + " API module.", "You may be able to install it: `npm install " + req + "`" - ].forEach(_.arity(Logger.log, 1)); + ].forEach(Logger.log); throw new Error("Missing API plugin - cannot proceed"); }