(defn redact
[data]
(walk/postwalk
(fn [node]
(if (and (vector? node) (= :id-number (first node)))
[:id-number "REDACTED"]
node))
data))
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)