Skip to content

Instantly share code, notes, and snippets.

@nordinrahman
Created December 8, 2016 07:08
Show Gist options
  • Select an option

  • Save nordinrahman/05064c6982a1c713e4fbb98036e8ff84 to your computer and use it in GitHub Desktop.

Select an option

Save nordinrahman/05064c6982a1c713e4fbb98036e8ff84 to your computer and use it in GitHub Desktop.
Flatten item and all its hierarchical hierarchy
var flatten = function(item) { var result = [item]; (items.Children || []).map(x => flatten(x)).forEach(x => result = result.concat(x)); return result; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment