Skip to content
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 308 Bytes

Readme.md

File metadata and controls

23 lines (15 loc) · 308 Bytes

delay

delay the given fn.

Installation

$ component install yields/delay

Example

var el = document.querySelector('#search');
var delay = require('delay');
el.onkeyup = delay(200, function(e){
  var val = e.target.value;
  // do ajax search or something.
});

License

MIT