4 lines
79 B
JavaScript
4 lines
79 B
JavaScript
|
export function root(...p) {
|
||
|
return path.resolve(__dirname, "..", ...p);
|
||
|
}
|