Functions
import { compose, debounce, once } from '@rtorcato/js-common/functions'
Exports
| Name | Summary |
|---|---|
compose | Composes functions from right to left. |
debounce | Returns a debounced version of a function. |
once | Returns a function that only calls the original function once. |
pipe | Pipes functions from left to right. |
throttle | Returns a throttled version of a function. |