Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/npm-audit-report/reporters/quiet.js')
-rw-r--r--node_modules/npm-audit-report/reporters/quiet.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/node_modules/npm-audit-report/reporters/quiet.js b/node_modules/npm-audit-report/reporters/quiet.js
deleted file mode 100644
index d6f5c5846..000000000
--- a/node_modules/npm-audit-report/reporters/quiet.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict'
-
-const Utils = require('../lib/utils')
-
-const report = function (data) {
- const totalVulnCount = Utils.totalVulnCount(data.metadata.vulnerabilities)
-
- return {
- report: '',
- exitCode: totalVulnCount === 0 ? 0 : 1
- }
-}
-
-module.exports = report