UNPKG

phraze

Version:
9 lines (6 loc) 169 B
import path from "path"; import fs from "fs"; export const readLocalFile = async (path) => { let file = await fs.promises.readFile(path); return file.toString(); };