An open API service indexing awesome lists of open source software.

https://github.com/hellerve/base64

A base64 library for and in zepto
https://github.com/hellerve/base64

Last synced: 4 days ago
JSON representation

A base64 library for and in zepto

Awesome Lists containing this project

README

          

# base64

A minimal base64 library for and in zepto.

Documentation can be found under `docs/index.html`
or generated with zeps' `docgen` command.

## Usage

You can encode and decode strings with this library (UTF-8 is supported).

```clojure
(load "base64/base64")
(import-all "base64")

(base64:encode "l€l") ; => "bOKCrGw="
(base64:decode (base64:encode "l€l")) ; => "l€l"
```


Have fun!