Skip to content

Instantly share code, notes, and snippets.

@andresmijares
Created July 25, 2016 03:34
Show Gist options
  • Save andresmijares/7d1bfcb2a1441b61dd73812b26b0f3f1 to your computer and use it in GitHub Desktop.
Save andresmijares/7d1bfcb2a1441b61dd73812b26b0f3f1 to your computer and use it in GitHub Desktop.
function flatty(list) {
/*Pure function*/
return list.reduce(function(all, item){
return all.concat(
Array.isArray(item) ? flatty(item) : item
)
}, [])
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment