aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js
blob: 182373be9419352d4e699a42dfa69a738909120d (plain) (blame)
1
2
3
4
5
6
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)