UNPKG

nornj-react

Version:

React bindings for NornJ template engine.

13 lines 258 B
import nj from 'nornj'; export function debounce(fn, delay) { let timeoutID = null; return function () { clearTimeout(timeoutID); timeoutID = setTimeout(() => { fn.apply(this, arguments); }, delay); }; } nj.assign(nj, { debounce });