From 860339b90edbb27c8c80da1add4f1fe1bc5eaf4a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 21 Feb 2013 23:33:23 -0800 Subject: [PATCH] Fix failing tests in Narwhal. Former-commit-id: 986262a14784d94f616663724e52d11a0e11a56d --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 06dc662dd..dc956f387 100644 --- a/lodash.js +++ b/lodash.js @@ -133,8 +133,8 @@ String = context.String; /** Used for `Array`, `Math`, and `Object` method references */ - var arrayRef = Array.prototype, - objectRef = Object.prototype; + var arrayRef = Array(), + objectRef = Object(); /** Used to restore the original `_` reference in `noConflict` */ var oldDash = context._;