On Friday, August 8, 2014 6:06:45 PM UTC-4, Jonathon McKitrick wrote: > Or an easy way to integrate an existing JS library?
There is goog.crypt.base64 [1] in the Google Closure library. You can use it like this: (ns example (:require [goog.crypt.base64 :as b64])) (b64/encodeString "hi") ;=> aGk= (b64/decodeString "aGk=") ;=> hi Alan 1. http://docs.closure-library.googlecode.com/git/namespace_goog_crypt_base64.html -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
