Skip to content

Instantly share code, notes, and snippets.

@vko-online
Last active February 20, 2017 12:45
Show Gist options
  • Save vko-online/0d3dd0e384323857da7da0c8cc66c285 to your computer and use it in GitHub Desktop.
Save vko-online/0d3dd0e384323857da7da0c8cc66c285 to your computer and use it in GitHub Desktop.
cv task
function flat(arr, old) {
var plain = old || [];
arr.reduce(function(prev, curr) {
if(curr instanceof Array) {
return flat(curr, plain);
} else {
plain.push(curr);
return plain;
}
}, plain);
return plain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment