From d38ab1145a4292e4fae85dc6ed0960820b680aaf Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Mon, 29 Sep 2014 18:01:24 +0800 Subject: [PATCH] `createCompounder`: Remove unused `words` argument --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index a03cb8c2f..920876be3 100644 --- a/lodash.js +++ b/lodash.js @@ -2628,7 +2628,7 @@ result = ''; while (++index < length) { - result = callback(result, array[index], index, words); + result = callback(result, array[index], index); } return result; };