From e4d8af175bec9e469256b59001832c74665f999f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 9 Aug 2016 20:13:12 -0700 Subject: [PATCH] Remove `String` reference. --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index f68d1f625..e897add54 100644 --- a/lodash.js +++ b/lodash.js @@ -1375,13 +1375,13 @@ Math = context.Math, Object = context.Object, RegExp = context.RegExp, + String = context.String, TypeError = context.TypeError; /** Used for built-in method references. */ var arrayProto = Array.prototype, funcProto = Function.prototype, - objectProto = Object.prototype, - stringProto = String.prototype; + objectProto = Object.prototype; /** Used to detect overreaching core-js shims. */ var coreJsData = context['__core-js_shared__'];