nerd-components/path-utils

Functions for manipulations with directory paths

Installs: 17

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

pkg:composer/nerd-components/path-utils

v0.1 2016-09-30 08:02 UTC

This package is not auto-updated.

Last update: 2025-10-16 01:38:11 UTC


README

Build Status Coverage Status StyleCI

Usage

use function Nerd\Utils\AbsolutePath\pathMaker;

$make = pathMaker('/some/root');

echo $make('file'); 		// /some/root/file
echo $make('../foo.txt'); 	// /some/foo.txt
echo $make('./other.txt');	// /some/root/other.txt