Files
mixtape/zero.Backoffice.UI/app/utils/timing.ts
T
2021-12-07 15:59:29 +01:00

10 lines
169 B
TypeScript

import { debounce as _debounce } from 'underscore';
/**
* Proxy to underscore debounce
*/
export function debounce(fn, timespan)
{
return _debounce(fn, timespan)
}