Function: hsys-org-uuid-is-p

hsys-org-uuid-is-p is a byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-uuid-is-p ID)

Documentation

Return non-nil if ID is a uuid.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-uuid-is-p (id)
  "Return non-nil if ID is a uuid."
  (and (stringp id)
       (if (fboundp 'org-uuidgen-p)
	   (org-uuidgen-p id)
	 (string-match org-uuid-regexp (downcase id)))))