mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-15 05:07:49 +00:00
Fix code style nits.
This commit is contained in:
@@ -10840,7 +10840,6 @@
|
|||||||
start = start === undefined ? 0 : nativeMax(toInteger(start), 0);
|
start = start === undefined ? 0 : nativeMax(toInteger(start), 0);
|
||||||
return baseRest(function(args) {
|
return baseRest(function(args) {
|
||||||
var array = args[start],
|
var array = args[start],
|
||||||
lastIndex = args.length - 1,
|
|
||||||
otherArgs = castSlice(args, 0, start);
|
otherArgs = castSlice(args, 0, start);
|
||||||
|
|
||||||
if (array) {
|
if (array) {
|
||||||
|
|||||||
@@ -18253,7 +18253,7 @@
|
|||||||
|
|
||||||
assert.deepEqual(actual, expected);
|
assert.deepEqual(actual, expected);
|
||||||
|
|
||||||
expected = lodashStable.map(values, noop),
|
expected = lodashStable.map(values, noop);
|
||||||
actual = lodashStable.at(array, values);
|
actual = lodashStable.at(array, values);
|
||||||
|
|
||||||
assert.deepEqual(actual, expected);
|
assert.deepEqual(actual, expected);
|
||||||
|
|||||||
Reference in New Issue
Block a user