Function: f-older-p

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

Signature

(f-older-p FILE OTHER &optional METHOD)

Documentation

Compare if FILE is older than OTHER.

For more info on METHOD, see f--date-compare.

Aliases

f-older?

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-older-p (file other &optional method)
  "Compare if FILE is older than OTHER.

For more info on METHOD, see `f--date-compare'."
  (< (f--date-compare file other method) 0))