Skip to content

Instantly share code, notes, and snippets.

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