UNPKG

@gluestack-seal/cli

Version:
10 lines (8 loc) 203 B
import { readFile } from "fs/promises"; export const readfile = async (filepath: string): Promise<any> => { try { return await readFile(filepath, "utf8"); } catch (e) { return false; } };