Skip to content

Instantly share code, notes, and snippets.

@dormd
Created August 19, 2019 17:26
Show Gist options
  • Save dormd/677fc8def47ab9a345eb4c37ba4bf812 to your computer and use it in GitHub Desktop.
Save dormd/677fc8def47ab9a345eb4c37ba4bf812 to your computer and use it in GitHub Desktop.
flattenDeep([]) // => []
flattenDeep([[1]]) // => [1]
flattenDeep([1,[[[2],22,[222]]],3, () => {}, { a: 4 }, [undefined, [null]], null, 'hi'])
// => [1, 2, 22, 222, 3, () => (), {a: 4}, undefined, null, null, 'hi']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment