Liking cljdoc? Tell your friends :D

uri-escape

This is a small library that will percent encode your data according to rfc3986.

Usage

(require '[uri-escape.core :as esc])

;; later

(esc/encode "hello world!")     ;; => "hello%20world%21"
(esc/decode "hello%20world%21") ;; => "hello world!"

License

License: Artistic-2.0

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close