tsasync function fileExists(filepath: string): Promise<boolean> { try { const file = await Deno.stat(filepath); return file.isFile(); } catch (e) { return false } }
exists ()
existsSync()