scittle

2022-10-03T13:08:18.356039Z

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 literals

2022-10-03T13:23:28.427719Z

I got it working with (clojure.edn/read-string {:default tagged-literal}) ...)

👍 1