@cush/relative
Ultra fast relative path resolver ⚡️
relative('a/b', './c')
relative('a/b', '.')
relative('a/b', '..')
relative('a/b', '../..')
The first argument is known as "the module".
The second argument is known as "the relative".
The relative must begin with a period. Otherwise, null
is returned.
The basename of the module is always ignored.
When the module is not absolute and the relative is pointing to the root directory, an empty string is returned.
When the module is not absolute and the relative is pointing outside the root directory, null
is returned.