UNPKG
pabala-biu
Version:
latest (1.0.14)
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.0
Changelogs
pabala-biu
/
src
/
utils
/
pathUtils.ts
13 lines
(11 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import *
as
path
from
"path"
;
function
cwd
(
pathName:
string
)
{
return
path.
join
(process.cwd(), pathName) }
function
relative
(
pathName:
string
)
{
return
path.
join
(__dirname, pathName) } export
default
{ cwd, relative }