Skip to content

Instantly share code, notes, and snippets.

@kapilreddy
Created August 30, 2011 11:42
Show Gist options
  • Save kapilreddy/1180721 to your computer and use it in GitHub Desktop.
Save kapilreddy/1180721 to your computer and use it in GitHub Desktop.
generate query string from map
(defn [query-map]
(str "?" (apply str (map name (flatten (interpose :& (map #(interpose "=" %) (seq query-map))))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment