NET-Web-API-w-Angular/my-app/node_modules/@npmcli/git/lib/is.js

5 lines
216 B
JavaScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
// not an airtight indicator, but a good gut-check to even bother trying
2024-06-03 19:44:25 +00:00
const { stat } = require('fs/promises')
2024-02-09 00:38:41 +00:00
module.exports = ({ cwd = process.cwd() } = {}) =>
stat(cwd + '/.git').then(() => true, () => false)