From 7a03898ffe83103f939ef047efe7aa958d36780e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 19 Oct 2016 16:22:08 -0700 Subject: [PATCH] Bump `HOT_COUNT` limit to improve fp debugging. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 703b7fb8e..c488a491b 100644 --- a/lodash.js +++ b/lodash.js @@ -51,7 +51,7 @@ DEFAULT_TRUNC_OMISSION = '...'; /** Used to detect hot functions by number of calls within a span of milliseconds. */ - var HOT_COUNT = 500, + var HOT_COUNT = 800, HOT_SPAN = 16; /** Used to indicate the type of lazy iteratees. */