Current File : //lib/node_modules/npm/lib/utils/read-local-package.js
exports = module.exports = readLocalPkg

var npm = require('../npm.js')
var readJson = require('read-package-json')

function readLocalPkg (cb) {
  if (npm.config.get('global')) return cb()
  var path = require('path')
  readJson(path.resolve(npm.prefix, 'package.json'), function (er, d) {
    return cb(er, d && d.name)
  })
}
Comments on: Btooom! Chapter 74 https://w3.readbtooom.com/manga/btooom-chapter-74/ Read Btooom! Manga Online in High Quality Wed, 30 Nov 2022 23:56:25 +0000 hourly 1 https://wordpress.org/?v=6.4.5