UNPKG

@gabimoncha/cursor-rules

Version:

A CLI for bootstrapping Cursor rules to a project

11 lines 244 B
import { statSync } from "node:fs"; export const fileExists = (path) => { try { const stats = statSync(path); return stats.isFile(); } catch (e) { return false; } }; //# sourceMappingURL=fileExists.js.map