aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js b/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js
deleted file mode 100644
index 182373be..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/is-clean.js
+++ /dev/null
@@ -1,6 +0,0 @@
-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)