This isn't working for me in scittle (0.3.10):
(binding [*default-data-reader-fn* tagged-literal]
(read-string "#x/y\"z\""))
Getting:
scittle.js:606 Uncaught Error: No reader function for tag x/y
Is that a limitation of scittle or sci on js? Just trying to not get an exception thrown on unrecognized tagged literalsI got it working with
(clojure.edn/read-string {:default tagged-literal}) ...)