We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(ns example (:require [cognitect.transit :as t])) (defn roundtrip [x] (let [w (t/writer :json) r (t/reader :json)] (js/console.log (t/write w x)) ;; ["^ ","~i1.1",1.1] (t/read r (t/write w x)))) (defn failing-decimal-key [] (let [data {1.1 1.1} data' (roundtrip data) ;;=> {1 1.1} ] (js/console.log data data') (assert (= data data')))) (defn init [] (failing-decimal-key))
I think this is a bug in transit-js, transit-clj writing will tag the key with ~d
transit-js
transit-clj
~d
The text was updated successfully, but these errors were encountered:
duplicate of cognitect/transit-js#36
Sorry, something went wrong.
No branches or pull requests
I think this is a bug in
transit-js
,transit-clj
writing will tag the key with~d
The text was updated successfully, but these errors were encountered: