Function: f-root-p

f-root-p is a byte-compiled function defined in f.el.

Signature

(f-root-p PATH)

Documentation

Return t if PATH is root directory, false otherwise.

Aliases

f-root?

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-root-p (path)
  "Return t if PATH is root directory, false otherwise."
  (not (f-parent path)))