UNPKG

@glint/core

Version:

A CLI for performing typechecking on Glimmer templates

10 lines 236 B
export function debounce(threshold, f) { let pending; return () => { if (pending) { clearTimeout(pending); } pending = setTimeout(f, threshold); }; } //# sourceMappingURL=scheduling.js.map