Skip to content

Commit

Permalink
Merge pull request #2858 from carpben/master
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Jun 28, 2020
2 parents 74fbec9 + 3219ed2 commit 31c1e26
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions modules/debounce.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import restArguments from './restArguments.js';
import delay from './delay.js';

// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be triggered after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
// When a sequence of calls of the returned function ends, the argument
// function is triggered. The end of a sequence is defined by the ‘wait’
// parameter. If immediate is passed, the argument function will be
// triggered at the beginning of the sequence as well.
export default function debounce(func, wait, immediate) {
var timeout, result;

Expand Down
8 changes: 4 additions & 4 deletions underscore-esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions underscore.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 31c1e26

Please sign in to comment.