Skip to content

Instantly share code, notes, and snippets.

@jashkenas
Created December 20, 2011 20:00
Show Gist options
  • Save jashkenas/1503012 to your computer and use it in GitHub Desktop.
Save jashkenas/1503012 to your computer and use it in GitHub Desktop.
switch filter.type
when 'is'
return no unless value is filter.value
when 'isnt'
return no unless value isnt filter.value
when 'matches'
return no unless value.match filter.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment