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
- Host: GitHub
- URL: https://github.com/hellerve/base64
- Owner: hellerve
- Created: 2016-05-23T11:30:58.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-30T13:07:38.000Z (over 9 years ago)
- Last Synced: 2025-10-06T14:53:21.736Z (6 months ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!