Created
July 31, 2019 14:56
-
-
Save reeddunkle/88ea447beae8a96e936c1d39500826c1 to your computer and use it in GitHub Desktop.
Nest a flat array
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
function foldBy(constructor, arr) { | |
if (!arr.length) return null; | |
const [item, ...rest] = arr; | |
return constructor(item, foldBy(constructor, rest)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment