Function: s-blank?

s-blank? is a byte-compiled function defined in s.el.

Signature

(s-blank? S)

Documentation

Is S nil or the empty string?

Aliases

s-blank-p

Source Code

;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-blank? (s)
  "Is S nil or the empty string?"
  (declare (pure t) (side-effect-free t))
  (or (null s) (string= "" s)))