| Server IP : 121.121.20.254 / Your IP : 216.73.216.41 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/nodejs/node_modules/npm/lib/utils/ |
Upload File : |
const { log, output } = require('proc-log')
const { redactLog: replaceInfo } = require('@npmcli/redact')
// Print an error or just nothing if the audit report has an error.
// This is called by the audit command, and by the reify-output util prints a JSON version of the error if it's --json.
// Returns 'true' if there was an error, false otherwise.
const auditError = (npm, report) => {
if (!report?.error) {
return false
}
if (npm.command !== 'audit') {
return true
}
const { error } = report
// ok, we care about it, then
log.warn('audit', error.message)
const { body: errBody } = error
const body = Buffer.isBuffer(errBody) ? errBody.toString() : errBody
if (npm.flatOptions.json) {
output.buffer({
message: error.message,
method: error.method,
uri: replaceInfo(error.uri),
headers: error.headers,
statusCode: error.statusCode,
body,
})
} else {
output.standard(body)
}
// XXX we should throw a real error here
throw 'audit endpoint returned an error'
}
module.exports = auditError