From ecb91613e80d95f8b60893c0be83ca44d4d3ce5f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 28 Jan 2014 23:31:52 -0800 Subject: [PATCH] Minor whitespace nits in `_.compose` and `_.pull`. [ci skip] --- lodash.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lodash.js b/lodash.js index 3ff4c2bd0..0d97143ae 100644 --- a/lodash.js +++ b/lodash.js @@ -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); }