Convert a string key to a keyword, leaving other types alone. Used to
simplify keys in the tabular data API.
(defn maybe-keywordize "Convert a string key to a keyword, leaving other types alone. Used to simplify keys in the tabular data API." [s] (if (string? s) (keyword s) s))
Comments top
No comments for maybe-keywordize. Log in to add a comment.