mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-10 01:33:13 +00:00
9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
|
|
import { readFileSync } from "fs";
|
||
|
|
import { dirname } from "path";
|
||
|
|
import { fileURLToPath } from "url";
|
||
|
|
|
||
|
|
const __filename = fileURLToPath(import.meta.url);
|
||
|
|
export const __dirname = dirname(__filename);
|
||
|
|
|
||
|
|
export const readJSON = (path) => JSON.parse(readFileSync(path, "utf-8"));
|