From 7d221f3be9d46d4f1097da1fc6c3670ed5af8fa9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 Jul 2014 13:26:31 -0700 Subject: [PATCH] Add doc reference to David Corbacho's post for `_.debounce` and `_.throttle`. [ci skip] --- lodash.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lodash.js b/lodash.js index 57e4bfb44..16cb6fba4 100644 --- a/lodash.js +++ b/lodash.js @@ -5874,6 +5874,9 @@ * the trailing edge of the timeout only if the the debounced function is * invoked more than once during the `wait` timeout. * + * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) + * for details over the differences between `_.debounce` and `_.throttle`. + * * @static * @memberOf _ * @category Function @@ -6255,6 +6258,9 @@ * the trailing edge of the timeout only if the the throttled function is * invoked more than once during the `wait` timeout. * + * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) + * for details over the differences between `_.throttle` and `_.debounce`. + * * @static * @memberOf _ * @category Function