cljs.spec/unstrument*

functionremoved v1.9.183added v1.9.14Edit
(unstrument* v)

Source code @ clojurescript:src/main/cljs/cljs/spec.cljs
(defn unstrument*
  [v]
  (locking instrumented-vars
           (when-let [{:keys [raw wrapped]} (get @instrumented-vars v)]
             (let [current @v]
               (when (= wrapped current)
                 (swap! instrumented-vars dissoc v)
                 raw)))))