PHP 8.2.30
Preview: index.js Size: 911 B
//opt/alt/alt-nodejs24/root/lib/node_modules/npm/node_modules.bundled/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-16 07:28:02
Edit Download
575 B lrw-r--r-- 2026-03-17 12:21:21
Edit Download
419 B lrw-r--r-- 2026-03-17 12:21:21
Edit Download
911 B lrw-r--r-- 2026-03-17 12:21:21
Edit Download

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