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
for a map such as { 1 {:a "b"} }, calling transform-keys ->kebab-case-keyword would throw an exception since it tries to symbolize the numerical key.
{ 1 {:a "b"} }
transform-keys ->kebab-case-keyword
ClassCastException java.lang.Long cannot be cast to clojure.lang.Named clojure.core/name (core.clj:1587)
The desirable result is that numerical keys are kept in tact and only text keys are converted.
The text was updated successfully, but these errors were encountered:
This also affects UUID keys.
Sorry, something went wrong.
No branches or pull requests
for a map such as
{ 1 {:a "b"} }
, callingtransform-keys ->kebab-case-keyword
would throw an exception since it tries to symbolize the numerical key.The desirable result is that numerical keys are kept in tact and only text keys are converted.
The text was updated successfully, but these errors were encountered: