Skip to content

Instantly share code, notes, and snippets.

@terakilobyte
Last active November 26, 2015 04:22
Show Gist options
  • Save terakilobyte/025b44fd3a5931d3680b to your computer and use it in GitHub Desktop.
Save terakilobyte/025b44fd3a5931d3680b to your computer and use it in GitHub Desktop.
function steamroller(arr) {
// I'm a steamroller, baby
function flatReduce(collection) {
return collection.reduce((acc, curr) => {
return acc.concat(Array.isArray(curr) ? flatReduce(curr) : curr);
}, []);
}
return flatReduce(arr);
}
steamroller([1, [2], [3, [[4]]]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment