From 95d3477c220070eaa695f4acc676d142653298c4 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 15 Nov 2016 21:48:07 -0800 Subject: [PATCH] Fix code style nits. --- lodash.js | 1 - test/test.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 8196609ef..4fbfdf319 100644 --- a/lodash.js +++ b/lodash.js @@ -10840,7 +10840,6 @@ start = start === undefined ? 0 : nativeMax(toInteger(start), 0); return baseRest(function(args) { var array = args[start], - lastIndex = args.length - 1, otherArgs = castSlice(args, 0, start); if (array) { diff --git a/test/test.js b/test/test.js index 181f39e69..fac2701e7 100644 --- a/test/test.js +++ b/test/test.js @@ -16360,7 +16360,7 @@ assert.deepEqual(actual, { 'a': { 'b': 2 } }); }); - QUnit.test('should omit a key over a path', function(assert) { + QUnit.test('should omit a key over a path', function(assert) { assert.expect(2); var object = { 'a.b': 1, 'a': { 'b': 2 } }; @@ -18253,7 +18253,7 @@ assert.deepEqual(actual, expected); - expected = lodashStable.map(values, noop), + expected = lodashStable.map(values, noop); actual = lodashStable.at(array, values); assert.deepEqual(actual, expected);