Icard/angular-clarity-master(work.../node_modules/@npmcli/git/lib/is.js

7 lines
271 B
JavaScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
// not an airtight indicator, but a good gut-check to even bother trying
const { promisify } = require('util')
const fs = require('fs')
const stat = promisify(fs.stat)
module.exports = ({ cwd = process.cwd() } = {}) =>
stat(cwd + '/.git').then(() => true, () => false)