Skip to content

Instantly share code, notes, and snippets.

@francoisdevlin
Created January 26, 2010 18:40
(defn safe-meta
[s]
(if (and (symbol? s)
(resolve s))
(eval `(meta (var ~s)))
{}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment