Skip to content

Instantly share code, notes, and snippets.

@reeddunkle
Created July 31, 2019 14:56
Show Gist options
  • Save reeddunkle/88ea447beae8a96e936c1d39500826c1 to your computer and use it in GitHub Desktop.
Save reeddunkle/88ea447beae8a96e936c1d39500826c1 to your computer and use it in GitHub Desktop.
Nest a flat array
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