ethers.js/src.ts/_admin/utils/path.ts
2023-02-22 21:52:33 -05:00

14 lines
385 B
TypeScript

import { dirname, resolve as _resolve } from "path";
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export const ROOT = _resolve(__dirname, "../../../");
export function resolve(...args: Array<string>): string {
args = args.slice();
args.unshift(ROOT);
return _resolve.apply(null, args);
}