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