Created
December 20, 2017 09:57
-
-
Save sithuaung/f6e391a332cff9d2a1ddf0e3b8c1a7bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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