Function: cider-clojurescript-present-p

cider-clojurescript-present-p is a byte-compiled function defined in cider.el.

Signature

(cider-clojurescript-present-p)

Documentation

Return non nil when ClojureScript is present.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider-clojurescript-present-p ()
  "Return non nil when ClojureScript is present."
  (or
   ;; This is nil for example for nbb.
   (cider-library-present-p "cljs.core")
   ;; demunge is not defined currently for normal cljs repls.
   ;; So we end up making the two checks
   (nrepl-dict-get (cider-sync-tooling-eval "cljs.core/demunge") "value")))