Function: s-blank-str?
s-blank-str? is a byte-compiled function defined in s.el.
Signature
(s-blank-str\? S)
Documentation
Is S nil or the empty string or string only contains whitespace?
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-blank-str? (s)
"Is S nil or the empty string or string only contains whitespace?"
(declare (pure t) (side-effect-free t))
(or (s-blank? s) (s-blank? (s-trim s))))