Function: f-symlink-p

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

Signature

(f-symlink-p PATH)

Documentation

Return t if PATH is symlink, false otherwise.

Aliases

f-symlink?

Source Code

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