UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

11 lines (10 loc) 210 B
export function throttle(fn, time) { var lastTime = 0; return function () { var now = new Date(); if (now - lastTime >= time) { fn.apply(void 0, arguments); lastTime = now; } }; }