Function: s-trim-left
s-trim-left is a byte-compiled function defined in s.el.
Signature
(s-trim-left S)
Documentation
Remove whitespace at the beginning of S.
Source Code
;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-trim-left (s)
"Remove whitespace at the beginning of S."
(declare (pure t) (side-effect-free t))
(save-match-data
(if (string-match "\\`[ \t\n\r]+" s)
(replace-match "" t t s)
s)))