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.

18 lines (15 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.throttle = throttle; function throttle(fn, time) { let lastTime = 0; return (...args) => { const now = new Date(); if (now - lastTime >= time) { fn(...args); lastTime = now; } }; }