UNPKG

alia

Version:
9 lines (8 loc) 249 B
import * as fs from 'node:fs'; export const file = { write: (path, data) => { fs.writeFileSync(path, JSON.stringify(data, null, 2)); }, read: (path) => fs.readFileSync(path, 'utf-8'), exists: (path) => fs.existsSync(path) };