For when you only need Lodash's debounce and throttle but existing Typescript alternatives are poor imitations.
Only 609 bytes gzipped.
import { debounce, throttle } from 'debounce.lodash'Or directly in the browser:
import { debounce, throttle } from 'https://www.unpkg.com/[email protected]/dist/index.min.js'The functions are almost identical to the lodash ones and the same tests pass.