UNPKG

@react-gnome/core

Version:

## Getting Started

11 lines (10 loc) 265 B
// src/get-dirpath/get-dirpath.esm.ts import path from "path"; import { fileURLToPath } from "url"; var getDirPath = () => { const __dirname = fileURLToPath(new URL(".", import.meta.url)); return path.resolve(__dirname, "../../.."); }; export { getDirPath };