createCompounder: Remove unused words argument

This commit is contained in:
Benjamin Tan
2014-09-29 18:01:24 +08:00
committed by John-David Dalton
parent f31360e1a4
commit d38ab1145a

View File

@@ -2628,7 +2628,7 @@
result = '';
while (++index < length) {
result = callback(result, array[index], index, words);
result = callback(result, array[index], index);
}
return result;
};