planck

Planck ClojureScript REPL
mfikes 2016-09-23T04:59:15.000191Z

@mnewhook Looks like it is not bundled with the released version of Planck. If you install master (see http://planck-repl.org/setup.html), you can mess with it:

cljs.user=> (require 'goog.labs.format.csv)
nil
cljs.user=> (goog.labs.format.csv/parse "a,b,c")
#js [#js ["a" "b" "cā€]]

mfikes 2016-09-23T05:01:09.000192Z

@pesterhazy See https://github.com/clojure/clojurescript/wiki/Google-Closure-Library#requiring-a-function

cljs.user=> (require 'goog.string.format)
nil
cljs.user=> (goog.string.format "%05d" 123)
ā€œ00123ā€

mnewhook 2016-09-23T11:58:33.000195Z

Thanks much Mike!