Minor whitespace nits in _.compose and _.pull. [ci skip]

This commit is contained in:
John-David Dalton
2014-01-28 23:31:52 -08:00
parent d4ac76081e
commit ecb91613e8

View File

@@ -2655,6 +2655,7 @@
while (++argsIndex < argsLength) {
var index = -1,
value = args[argsIndex];
while (++index < length) {
if (array[index] === value) {
splice.call(array, index--, 1);
@@ -4676,6 +4677,7 @@
return function() {
var length = funcsLength - 1,
result = funcs[length].apply(this, arguments);
while (length--) {
result = funcs[length].call(this, result);
}