Skip to content

Instantly share code, notes, and snippets.

@ldmarz
Created August 10, 2018 14:15
Show Gist options
  • Save ldmarz/43d28b0781e7ac2aec1f9e31a8ae5d1d to your computer and use it in GitHub Desktop.
Save ldmarz/43d28b0781e7ac2aec1f9e31a8ae5d1d to your computer and use it in GitHub Desktop.
example of compact function from lodash
const someDirtyArray = [0, 1, false, 2, '', 3];
const cleanedArray = _.compact(someDirtyArray);
// cleanedArray => [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment