From fc734a63717e2f29268eb79a161daaa6a9107d02 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 1 Sep 2016 01:12:12 -0700 Subject: [PATCH] Increase the `HOT_COUNT` to avoid shorting out setting fp `toString` methods. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index c57db7ed4..ec1472b50 100644 --- a/lodash.js +++ b/lodash.js @@ -50,7 +50,7 @@ DEFAULT_TRUNC_OMISSION = '...'; /** Used to detect hot functions by number of calls within a span of milliseconds. */ - var HOT_COUNT = 150, + var HOT_COUNT = 500, HOT_SPAN = 16; /** Used to indicate the type of lazy iteratees. */