Fixed bug in reading string values
but still buggy if first character is digit
This commit is contained in:
parent
b5c6b5d7a5
commit
837c43ac32
|
@ -16,7 +16,8 @@
|
|||
integer or real in our data rather than a string representation of it."
|
||||
[^String s]
|
||||
(try
|
||||
(read-string s)
|
||||
(let [v (read-string s)]
|
||||
(if (number? v) v s))
|
||||
(catch Exception _ s)))
|
||||
|
||||
(defn csv->edn
|
||||
|
|
Loading…
Reference in a new issue