From d5a9b4344bc212a9949bec58e7d7c52e63558e00 Mon Sep 17 00:00:00 2001 From: Ray Hammond Date: Tue, 21 Apr 2015 21:18:25 +0100 Subject: [PATCH] Removed unused variables identified by JSHint. --- lodash.src.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 5c30c178f..92f502f78 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -36,8 +36,7 @@ /** Used to indicate the type of lazy iteratees. */ var LAZY_DROP_WHILE_FLAG = 0, LAZY_FILTER_FLAG = 1, - LAZY_MAP_FLAG = 2, - LAZY_TAKE_WHILE_FLAG = 3; + LAZY_MAP_FLAG = 2; /** Used as the `TypeError` message for "Functions" methods. */ var FUNC_ERROR_TEXT = 'Expected a function'; @@ -12359,7 +12358,6 @@ lodash.prototype[methodName] = function() { var args = arguments, - length = args.length, chainAll = this.__chain__, value = this.__wrapped__, isHybrid = !!this.__actions__.length,