Created
February 26, 2016 11:27
-
-
Save timwis/db7d779d4c673c9a8851 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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