AlkantarClanX12

Your IP : 3.138.105.4


Current Path : /proc/self/root/opt/alt/alt-nodejs9/root/lib/node_modules/npm/lib/install/action/
Upload File :
Current File : //proc/self/root/opt/alt/alt-nodejs9/root/lib/node_modules/npm/lib/install/action/extract-worker.js

'use strict'

const BB = require('bluebird')

const extract = require('pacote/extract')
const npmlog = require('npmlog')

module.exports = (args, cb) => {
  const parsed = typeof args === 'string' ? JSON.parse(args) : args
  const spec = parsed[0]
  const extractTo = parsed[1]
  const opts = parsed[2]
  if (!opts.log && opts.loglevel) {
    opts.log = npmlog
    opts.log.level = opts.loglevel
  }
  BB.resolve(extract(spec, extractTo, opts)).nodeify(cb)
}