From e7c55c1ad6495e3be1ce02c6972caf227db56529 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 15 Jun 2013 17:02:30 -0700 Subject: [PATCH] Minor whitespace nits. Former-commit-id: 53a50cbb83cd638f42c0b943c8c2eb354403c787 --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 088c15b9e..8748df7f8 100644 --- a/lodash.js +++ b/lodash.js @@ -503,7 +503,7 @@ /* Native method shortcuts for methods with the same name as other `lodash` methods */ var nativeBind = reNative.test(nativeBind = toString.bind) && nativeBind, - nativeCreate = reNative.test(nativeCreate = Object.create) && nativeCreate, + nativeCreate = reNative.test(nativeCreate = Object.create) && nativeCreate, nativeIsArray = reNative.test(nativeIsArray = Array.isArray) && nativeIsArray, nativeIsFinite = context.isFinite, nativeIsNaN = context.isNaN, @@ -1094,7 +1094,7 @@ return isObject(prototype) ? nativeCreate(prototype) : {}; } // fallback for browsers without `Object.create` - if (!nativeCreate) { + if (!nativeCreate) { var createObject = function(prototype) { if (isObject(prototype)) { noop.prototype = prototype;