This project is not covered by Drupal’s security advisory policy.

It is a backport of D8 debounce javascript.

Usage

drupal_add_library('debounce', 'drupal.debounce');

JavaScript snippet

var debounce = Drupal.debounce(function() {
  alert('Hello world');
}, 250);

window.addEventListener('scroll', debounce);

Project information

Releases