Function: cider--debug-trim-code

cider--debug-trim-code is a byte-compiled function defined in cider-debug.el.

Signature

(cider--debug-trim-code CODE)

Documentation

Remove whitespace and reader macros from the start of the CODE.

Return trimmed CODE.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defun cider--debug-trim-code (code)
  "Remove whitespace and reader macros from the start of the CODE.
Return trimmed CODE."
  (replace-regexp-in-string "\\`#[a-z]+[\n\r[:blank:]]*" "" code))