next/v0.101.0
Pre-release
Pre-release
⚠️ Breaking changes
- Fully refactored
debounce
method (object form arguments, pass latest value, supports target) #38 (@sergeysova)
Migrate debounce and implement object arguments form with target support
const debounced = debounce({ source, timeout: 10 })
// or
debounce({ source, timeout: 10, target })
🧪 Tests
- Split CI to different steps #39 (@sergeysova)