Skip to content

Instantly share code, notes, and snippets.

@mekhami
Created November 1, 2018 16:14
Show Gist options
  • Save mekhami/9060dd7e6fdfb4036a8dc1161420288c to your computer and use it in GitHub Desktop.
Save mekhami/9060dd7e6fdfb4036a8dc1161420288c to your computer and use it in GitHub Desktop.
const findNode = (id, current) => {
if (id === current.id) {
return current
} else {
if (current.children) {
current.children.forEach(child => {
return findNode(id, child)
})
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment