UNPKG

@bemedev/cli-test

Version:

A library for testing CLI libraries (INCEPTION !!)

12 lines (9 loc) 261 B
import { existsSync } from 'fs'; import { getSetupFile } from './getSetupFile.js'; const exists = () => { const path = getSetupFile(); const check = existsSync(path); return { check, path }; }; export { exists }; //# sourceMappingURL=exist.js.map