UNPKG

@t1mmen/srtd

Version:

Supabase Repeatable Template Definitions (srtd): 🪄 Live-reloading SQL templates for Supabase DX. Make your database changes reviewable and migrations maintainable! 🚀

11 lines • 232 B
import fs from 'node:fs/promises'; export async function fileExists(filepath) { try { await fs.access(filepath); return true; } catch { return false; } } //# sourceMappingURL=fileExists.js.map