Skip to content

Instantly share code, notes, and snippets.

@sithuaung
Created December 20, 2017 09:57
Show Gist options
  • Save sithuaung/f6e391a332cff9d2a1ddf0e3b8c1a7bd to your computer and use it in GitHub Desktop.
Save sithuaung/f6e391a332cff9d2a1ddf0e3b8c1a7bd to your computer and use it in GitHub Desktop.
let arrangeCategories = (categories, parent = null) => {
let result = {}
return categories.filter(category => category.parent === parent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment