Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow nil arguments to debounce function
this allows ```lua local f = utils.debounce(function(...) print(...) end) f(1, nil, 9, nil, nil) -- "1 nil 9 nil nil" --- previously would've output "1" (undefined behavior) ```
- Loading branch information