Common Clojure library that I use for different projects and hopefully something that compatible with GraalVM.
If you are using Leiningen then you can quickly try
# Get project dependency
lein deps :tree
There are couple of function that I used quite often in other project.
;; Use in your Clojure code
(require [b12n.swiza.commons.core-utils
:refer [expand-path
load-edn-config
assoc-some
map-keys
map-vals]]
[b12n.swiza.common.base64-utils
:refer [base64-encode
base64-decode]])
(expand-path "~/path") ;;=> "$HOME/path"
(load-edn-config "~/path/to/your/config.edn")
;; The following function works without issue when using with GraalVM
;; base64-encode
;; base64-decode
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close