Skip to content

Instantly share code, notes, and snippets.

@goofballLogic
Created March 30, 2026 11:53
Show Gist options
  • Select an option

  • Save goofballLogic/2b545bf5f710fd65da53ce6cd5d207e0 to your computer and use it in GitHub Desktop.

Select an option

Save goofballLogic/2b545bf5f710fd65da53ce6cd5d207e0 to your computer and use it in GitHub Desktop.
const resolvePath = (fs, path, ...visited) =>
visited.includes(path)
? null
: fs[path]
? resolvePath(fs, fs[path], path, ...visited)
: path
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment