mirror of
https://github.com/sern-handler/cli
synced 2026-06-17 05:12:25 +00:00
Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Co-authored-by: jacob <jacoobes@sern.dev>
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import path from 'path';
|
|
|
|
export function fromCwd(...dir: string[]) {
|
|
return path.join(...[process.cwd(), ...dir]);
|
|
}
|