Liking cljdoc? Tell your friends :D

clj-http.util

Helper functions for the HTTP client.

Helper functions for the HTTP client.
raw docstring

base64-encodeclj

(base64-encode unencoded)

Encode an array of bytes into a base64 encoded string.

Encode an array of bytes into a base64 encoded string.
sourceraw docstring

deflateclj

(deflate b)

Returns a deflate'd version of the given byte array.

Returns a deflate'd version of the given byte array.
sourceraw docstring

force-byte-arrayclj

(force-byte-array b)

force b as byte array if it is an InputStream, also close the stream

force b as byte array if it is an InputStream, also close the stream
sourceraw docstring

force-streamclj

(force-stream b)

Force b as InputStream if it is a ByteArray.

Force b as InputStream if it is a ByteArray.
sourceraw docstring

force-stringclj

(force-string s charset)

Convert s (a ByteArray or InputStream) to String.

Convert s (a ByteArray or InputStream) to String.
sourceraw docstring

gunzipclj

(gunzip b)

Returns a gunzip'd version of the given byte array.

Returns a gunzip'd version of the given byte array.
sourceraw docstring

gzipclj

(gzip b)

Returns a gzip'd version of the given byte array.

Returns a gzip'd version of the given byte array.
sourceraw docstring

inflateclj

(inflate b)

Returns a zlib inflate'd version of the given byte array or InputStream.

Returns a zlib inflate'd version of the given byte array or InputStream.
sourceraw docstring

lower-case-keysclj

(lower-case-keys m)

Recursively lower-case all map keys that are strings.

Recursively lower-case all map keys that are strings.
sourceraw docstring

optclj

(opt req param)

Check the request parameters for a keyword boolean option, with or without the ?

Returns false if either of the values are false, or the value of (or key1 key2) otherwise (truthy)

Check the request parameters for a keyword  boolean option, with or without
the ?

Returns false if either of the values are false, or the value of
(or key1 key2) otherwise (truthy)
sourceraw docstring

parse-content-typeclj

(parse-content-type s)

Parse s as an RFC 2616 media type.

Parse `s` as an RFC 2616 media type.
sourceraw docstring

url-decodeclj

(url-decode encoded & [encoding])

Returns the form-url-decoded version of the given string, using either a specified encoding or UTF-8 by default.

Returns the form-url-decoded version of the given string, using either a
specified encoding or UTF-8 by default.
sourceraw docstring

url-encodeclj

(url-encode unencoded & [encoding])

Returns an UTF-8 URL encoded version of the given string.

Returns an UTF-8 URL encoded version of the given string.
sourceraw docstring

utf8-bytesclj

(utf8-bytes s & [encoding])

Returns the encoding's bytes corresponding to the given string. If no encoding is specified, UTF-8 is used.

Returns the encoding's bytes corresponding to the given string. If no
encoding is specified, UTF-8 is used.
sourceraw docstring

utf8-stringclj

(utf8-string b & [encoding])

Returns the String corresponding to the given encoding's decoding of the given bytes. If no encoding is specified, UTF-8 is used.

Returns the String corresponding to the given encoding's decoding of the
given bytes. If no encoding is specified, UTF-8 is used.
sourceraw docstring

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

× close