$83 GRAYBYTE WORDPRESS FILE MANAGER $27

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/lib/utils/

HOME
Current File : /opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/lib/utils//display.js
const { inspect } = require('util')
const npmlog = require('npmlog')
const log = require('./log-shim.js')
const { explain } = require('./explain-eresolve.js')

const _logHandler = Symbol('logHandler')
const _eresolveWarn = Symbol('eresolveWarn')
const _log = Symbol('log')
const _npmlog = Symbol('npmlog')

class Display {
  constructor () {
    // pause by default until config is loaded
    this.on()
    log.pause()
  }

  on () {
    process.on('log', this[_logHandler])
  }

  off () {
    process.off('log', this[_logHandler])
    // Unbalanced calls to enable/disable progress
    // will leave change listeners on the tracker
    // This pretty much only happens in tests but
    // this removes the event emitter listener warnings
    log.tracker.removeAllListeners()
  }

  load (config) {
    const {
      color,
      timing,
      loglevel,
      unicode,
      progress,
      silent,
      heading = 'npm',
    } = config

    // XXX: decouple timing from loglevel
    if (timing && loglevel === 'notice') {
      log.level = 'timing'
    } else {
      log.level = loglevel
    }

    log.heading = heading

    if (color) {
      log.enableColor()
    } else {
      log.disableColor()
    }

    if (unicode) {
      log.enableUnicode()
    } else {
      log.disableUnicode()
    }

    // if it's silent, don't show progress
    if (progress && !silent) {
      log.enableProgress()
    } else {
      log.disableProgress()
    }

    // Resume displaying logs now that we have config
    log.resume()
  }

  log (...args) {
    this[_logHandler](...args)
  }

  [_logHandler] = (level, ...args) => {
    try {
      this[_log](level, ...args)
    } catch (ex) {
      try {
        // if it crashed once, it might again!
        this[_npmlog]('verbose', `attempt to log ${inspect(args)} crashed`, ex)
      } catch (ex2) {
        // eslint-disable-next-line no-console
        console.error(`attempt to log ${inspect(args)} crashed`, ex, ex2)
      }
    }
  }

  [_log] (...args) {
    return this[_eresolveWarn](...args) || this[_npmlog](...args)
  }

  // Explicitly call these on npmlog and not log shim
  // This is the final place we should call npmlog before removing it.
  [_npmlog] (level, ...args) {
    npmlog[level](...args)
  }

  // Also (and this is a really inexcusable kludge), we patch the
  // log.warn() method so that when we see a peerDep override
  // explanation from Arborist, we can replace the object with a
  // highly abbreviated explanation of what's being overridden.
  [_eresolveWarn] (level, heading, message, expl) {
    if (level === 'warn' &&
        heading === 'ERESOLVE' &&
        expl && typeof expl === 'object'
    ) {
      this[_npmlog](level, heading, message)
      this[_npmlog](level, '', explain(expl, log.useColor(), 2))
      // Return true to short circuit other log in chain
      return true
    }
  }
}

module.exports = Display

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
31 Aug 2024 8.02 AM
root / root
0755
completion
--
31 Aug 2024 8.02 AM
root / root
0755
config
--
31 Aug 2024 8.02 AM
root / root
0755
ansi-trim.js
0.169 KB
3 Nov 2023 9.14 PM
root / root
0644
audit-error.js
0.955 KB
3 Nov 2023 9.14 PM
root / root
0644
cmd-list.js
2.46 KB
3 Nov 2023 9.14 PM
root / root
0644
completion.sh
1.854 KB
3 Nov 2023 9.14 PM
root / root
0755
did-you-mean.js
1.463 KB
3 Nov 2023 9.14 PM
root / root
0644
display.js
2.84 KB
3 Nov 2023 9.14 PM
root / root
0644
error-message.js
12.642 KB
3 Nov 2023 9.14 PM
root / root
0644
exit-handler.js
6.767 KB
3 Nov 2023 9.14 PM
root / root
0644
explain-dep.js
3.733 KB
3 Nov 2023 9.14 PM
root / root
0644
explain-eresolve.js
2.557 KB
3 Nov 2023 9.14 PM
root / root
0644
format-bytes.js
0.614 KB
3 Nov 2023 9.14 PM
root / root
0644
format-search-stream.js
3.929 KB
3 Nov 2023 9.14 PM
root / root
0644
get-identity.js
0.723 KB
3 Nov 2023 9.14 PM
root / root
0644
is-windows.js
0.228 KB
3 Nov 2023 9.14 PM
root / root
0644
log-file.js
7.644 KB
3 Nov 2023 9.14 PM
root / root
0644
log-shim.js
1.678 KB
3 Nov 2023 9.14 PM
root / root
0644
npm-usage.js
1.952 KB
3 Nov 2023 9.14 PM
root / root
0644
open-url-prompt.js
1.539 KB
3 Nov 2023 9.14 PM
root / root
0644
open-url.js
1.174 KB
3 Nov 2023 9.14 PM
root / root
0644
otplease.js
1.231 KB
3 Nov 2023 9.14 PM
root / root
0644
ping.js
0.246 KB
3 Nov 2023 9.14 PM
root / root
0644
pulse-till-done.js
0.402 KB
3 Nov 2023 9.14 PM
root / root
0644
queryable.js
9.577 KB
3 Nov 2023 9.14 PM
root / root
0644
read-user-info.js
1.989 KB
3 Nov 2023 9.14 PM
root / root
0644
reify-finish.js
0.855 KB
3 Nov 2023 9.14 PM
root / root
0644
reify-output.js
4.962 KB
3 Nov 2023 9.14 PM
root / root
0644
replace-info.js
0.788 KB
3 Nov 2023 9.14 PM
root / root
0644
tar.js
3.729 KB
3 Nov 2023 9.14 PM
root / root
0644
timers.js
3.181 KB
3 Nov 2023 9.14 PM
root / root
0644
update-notifier.js
4.452 KB
3 Nov 2023 9.14 PM
root / root
0644
validate-lockfile.js
0.999 KB
3 Nov 2023 9.14 PM
root / root
0644
web-auth.js
0.545 KB
3 Nov 2023 9.14 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF