Sha256: 1bc3941620b55e3fee7ba4804d3800a66d8e74d67fac34f00a74f491c370fda8
Contents?: true
Size: 271 Bytes
Versions: 33
Compression:
Stored size: 271 Bytes
Contents
// 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)
Version data entries
33 entries across 33 versions & 1 rubygems