From a3083d2990df632bb63e7890df57dbc9f530bb7d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 23 Nov 2014 15:36:10 -0800 Subject: [PATCH] Add V8 bug note to `setData`. --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index c09f989dc..bd34bd114 100644 --- a/lodash.js +++ b/lodash.js @@ -3422,8 +3422,8 @@ * Sets metadata for `func`. * * **Note:** If this function becomes hot, i.e. is invoked a lot in a short - * period of time, it will trip its breaker and transition to an identity - * function to avoid garbage collection pauses. + * period of time, it will trip its breaker and transition to an identity function + * to avoid garbage collection pauses in V8. See https://code.google.com/p/v8/issues/detail?id=2070. * * @private * @param {Function} func The function to associate metadata with.