From d969dcecbff88bfad7e9981e646e3de7515acefd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 28 Jan 2014 22:04:07 -0800 Subject: [PATCH] Set `LARGE_ARRAY_SIZE` to 40. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 2acccade0..9b250d91e 100644 --- a/lodash.js +++ b/lodash.js @@ -20,7 +20,7 @@ PARTIAL_RIGHT_FLAG = 32; /** Used as the size when optimizations are enabled for arrays */ - var LARGE_ARRAY_SIZE = 75; + var LARGE_ARRAY_SIZE = 40; /** Used as the max size of the `arrayPool` and `objectPool` */ var MAX_POOL_SIZE = 40;