Skip to content

Instantly share code, notes, and snippets.

@matthew-gerstman
Created March 18, 2019 22:12
Show Gist options
  • Save matthew-gerstman/4f39158a4b0349807f36640011402a96 to your computer and use it in GitHub Desktop.
Save matthew-gerstman/4f39158a4b0349807f36640011402a96 to your computer and use it in GitHub Desktop.
function flatten(list) {
return list.reduce((acc, item) => {
if (Array.isArray(item)) {
acc = acc.concat(item);
} else {
acc.push(item);
}
return acc;
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment