Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created May 1, 2014 09:54
Show Gist options
  • Save rightfold/f63a9e45a111ea50007f to your computer and use it in GitHub Desktop.
Save rightfold/f63a9e45a111ea50007f to your computer and use it in GitHub Desktop.
query-filter = (query) ->
query
|> (.replace(/[^a-zA-Z0-9]/g, ''))
|> (.replace(/(?:)/g, '.*'))
|> (x) -> "^.*#{x}.*$"
|> new RegExp(_, \i)
|> (regex) -> (.title |> regex~test)
filter-query = filter << query-filter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment