| .. | |||||
| clone.js | |||||
| errors.js | |||||
| find.js | |||||
| index.js | |||||
| is-clean.js | |||||
| is.js | |||||
| lines-to-revs.js | |||||
| make-error.js | |||||
| opts.js | |||||
| revs.js | |||||
| spawn.js | |||||
| utils.js | |||||
| which.js |
const spawn = require('./spawn.js')
module.exports = (opts = {}) =>
spawn(['status', '--porcelain=v1', '-uno'], opts)
.then(res => !res.stdout.trim().split(/\r?\n+/)
.map(l => l.trim()).filter(l => l).length)
| .. | |||||
| clone.js | |||||
| errors.js | |||||
| find.js | |||||
| index.js | |||||
| is-clean.js | |||||
| is.js | |||||
| lines-to-revs.js | |||||
| make-error.js | |||||
| opts.js | |||||
| revs.js | |||||
| spawn.js | |||||
| utils.js | |||||
| which.js |