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
this should update nested paths instead of overwriting root value.
Expected behavior should be more akin to:
(defn assoc-in [store key-vec val opts] (let [[path-vec key] ((juxt pop peek) key-vec)] (k/update-in store path-vec #(clojure.core/assoc % key val) opts)))
Simple fix but given its duration should be grouped into a breaking-change release
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this should update nested paths instead of overwriting root value.
Expected behavior should be more akin to:
Simple fix but given its duration should be grouped into a breaking-change release
The text was updated successfully, but these errors were encountered: