mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Minor whitespace nits in _.compose and _.pull. [ci skip]
This commit is contained in:
@@ -2655,6 +2655,7 @@
|
|||||||
while (++argsIndex < argsLength) {
|
while (++argsIndex < argsLength) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
value = args[argsIndex];
|
value = args[argsIndex];
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
if (array[index] === value) {
|
if (array[index] === value) {
|
||||||
splice.call(array, index--, 1);
|
splice.call(array, index--, 1);
|
||||||
@@ -4676,6 +4677,7 @@
|
|||||||
return function() {
|
return function() {
|
||||||
var length = funcsLength - 1,
|
var length = funcsLength - 1,
|
||||||
result = funcs[length].apply(this, arguments);
|
result = funcs[length].apply(this, arguments);
|
||||||
|
|
||||||
while (length--) {
|
while (length--) {
|
||||||
result = funcs[length].call(this, result);
|
result = funcs[length].call(this, result);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user