PROXIMATE_TO relative path to base
Contents
Inputs
- base: directory to which the other path should be relative
- other: path to be made relative
Outputs
- rel: relative path from base to other
function rel = proximate_to(base, other) rel = stdlib.relative_to(base, other); if stdlib.strempty(rel) rel = other; end end