Function: s-chop-left
s-chop-left is a byte-compiled function defined in s.el.
Signature
(s-chop-left LEN S)
Documentation
Remove the first LEN chars from S.
Source Code
;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-chop-left (len s)
"Remove the first LEN chars from S."
(let ((l (length s)))
(if (> l len)
(substring s len l)
"")))