Skip to content

Instantly share code, notes, and snippets.

@sergueyarellano
Created May 28, 2021 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergueyarellano/960a26580a9836c1bcf1aed6addd0526 to your computer and use it in GitHub Desktop.
Save sergueyarellano/960a26580a9836c1bcf1aed6addd0526 to your computer and use it in GitHub Desktop.
function applyFilters (filters) {
return data => data.filter(element => filters.every(filter => filter(element)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment