PHP 8.3.31
Preview: index.js Size: 911 B
/opt/alt/alt-nodejs20/root/usr/lib/node_modules/npm/node_modules/npm-audit-report/lib/index.js

'use strict'

const reporters = {
  install: require('./reporters/install'),
  detail: require('./reporters/detail'),
  json: require('./reporters/json'),
  quiet: require('./reporters/quiet'),
}

const exitCode = require('./exit-code.js')

module.exports = Object.assign((data, options = {}) => {
  const {
    reporter = 'install',
    chalk,
    unicode = true,
    indent = 2,
  } = options

  // CLI defaults this to `null` so the defaulting method above doesn't work
  const auditLevel = options.auditLevel || 'low'

  if (!data) {
    throw Object.assign(
      new TypeError('ENOAUDITDATA'),
      {
        code: 'ENOAUDITDATA',
        message: 'missing audit data',
      }
    )
  }

  if (typeof data.toJSON === 'function') {
    data = data.toJSON()
  }

  return {
    report: reporters[reporter](data, { chalk, unicode, indent }),
    exitCode: exitCode(data, auditLevel),
  }
}, { reporters })

Directory Contents

Dirs: 1 × Files: 3

Name Size Perms Modified Actions
reporters DIR
- drwxr-xr-x 2026-04-30 07:07:14
Edit Download
575 B lrw-r--r-- 2026-04-09 12:16:16
Edit Download
419 B lrw-r--r-- 2026-04-09 12:16:16
Edit Download
911 B lrw-r--r-- 2026-04-09 12:16:16
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).