nerd-components/path-utils

Functions for manipulations with directory paths

Maintainers

Package info

github.com/nerd-components/path-utils

Issues

pkg:composer/nerd-components/path-utils

Statistics

Installs: 17

Dependents: 0

Suggesters: 0

Stars: 0

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

This package is not auto-updated.

Last update: 2026-02-19 03:25:47 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