Skip to content

Instantly share code, notes, and snippets.

@jaforsgren
Created November 2, 2017 16:54
Show Gist options
  • Save jaforsgren/35e7571114f1adf00c0bfba03448e25e to your computer and use it in GitHub Desktop.
Save jaforsgren/35e7571114f1adf00c0bfba03448e25e to your computer and use it in GitHub Desktop.
fn findhead obj =
(
if (isGroupHead obj)
then (return obj)
else (if (isGroupMember obj) then (findhead (obj.parent)) else (return undefined))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment