Skip to content

Instantly share code, notes, and snippets.

@timwis
Created February 26, 2016 11:27
Show Gist options
  • Save timwis/db7d779d4c673c9a8851 to your computer and use it in GitHub Desktop.
Save timwis/db7d779d4c673c9a8851 to your computer and use it in GitHub Desktop.
var filteredDatasets = _.filter(datasets, function (dataset) {
return (!params.organization || (dataset.organization && slugify(dataset.organization) === params.organization)) &&
(!params.category || (dataset.category && slugify(dataset.category).indexOf(params.category) !== -1))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment