Skip to content

next/v0.101.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jun 11:12

⚠️ 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