AlkantarClanX12

Your IP : 3.145.196.150


Current Path : /proc/self/root/opt/alt/alt-nodejs14/root/lib/node_modules/npm/node_modules/tar/lib/
Upload File :
Current File : //proc/self/root/opt/alt/alt-nodejs14/root/lib/node_modules/npm/node_modules/tar/lib/warn-mixin.js

'use strict'
module.exports = Base => class extends Base {
  warn (msg, data) {
    if (!this.strict)
      this.emit('warn', msg, data)
    else if (data instanceof Error)
      this.emit('error', data)
    else {
      const er = new Error(msg)
      er.data = data
      this.emit('error', er)
    }
  }
}