Skip to content

Instantly share code, notes, and snippets.

@mwmitchell
Created November 20, 2013 20:19
Show Gist options
  • Save mwmitchell/7570284 to your computer and use it in GitHub Desktop.
Save mwmitchell/7570284 to your computer and use it in GitHub Desktop.
(def feature-preds
{:VTM (fn [request] false)})
(defn filter-features [request features]
(filter #((get feature-preds % (constantly true)) request) features))
(let [fake-request {:server-name "www.roomkey.com"}]
(filter-features fake-request #{:VTM}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment