(defn remove-nils [m] (clojure.walk/postwalk (fn [x] (if (map? x) (->> (keep (fn [[k v]] (when (nil? v) k)) x) (apply dissoc x)) x)) m)).
確定! 回上一頁