Skip to content

Commit

Permalink
Fix JSDoc (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
rigwild authored Nov 13, 2023
1 parent 8be734c commit 991d8fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
*
* @source underscore.js
* @see http://unscriptable.com/2009/03/20/debouncing-javascript-methods/
* @param {Function} function to wrap
* @param {Number} timeout in ms (`100`)
* @param {Boolean} whether to execute at the beginning (`false`)
* @param {Function} func function to wrap
* @param {number} [wait=100] time to wait in ms (`100`)
* @param {boolean} [immediate=false] should execute at the beginning (`false`)
* @api public
*/
function debounce(func, wait, immediate){
Expand Down

0 comments on commit 991d8fe

Please sign in to comment.