Skip to content

Instantly share code, notes, and snippets.

@huynhducduy
Created July 2, 2024 18:55
Show Gist options
  • Save huynhducduy/d180dc30a21e00ec1da7bb47ff042f4e to your computer and use it in GitHub Desktop.
Save huynhducduy/d180dc30a21e00ec1da7bb47ff042f4e to your computer and use it in GitHub Desktop.
detangle.js
export function detangle() {
let blocked = false
return callback => (...args) => {
if (blocked) return
blocked = true
callback(...args)
blocked = false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment