PK
œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
| Dir : /opt/alt/alt-nodejs6/root/lib/node_modules/npm/lib/ |
| Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 IP: 66.29.132.192 |
| Dir : //opt/alt/alt-nodejs6/root/lib/node_modules/npm/lib/stars.js |
module.exports = stars
stars.usage = 'npm stars [<user>]'
var npm = require('./npm.js')
var log = require('npmlog')
var mapToRegistry = require('./utils/map-to-registry.js')
var output = require('./utils/output.js')
function stars (args, cb) {
npm.commands.whoami([], true, function (er, username) {
var name = args.length === 1 ? args[0] : username
if (er) {
if (er.code === 'ENEEDAUTH' && !name) {
var needAuth = new Error("'npm stars' on your own user account requires auth")
needAuth.code = 'ENEEDAUTH'
return cb(needAuth)
}
if (er.code !== 'ENEEDAUTH') return cb(er)
}
mapToRegistry('', npm.config, function (er, uri, auth) {
if (er) return cb(er)
var params = {
username: name,
auth: auth
}
npm.registry.stars(uri, params, showstars)
})
})
function showstars (er, data) {
if (er) return cb(er)
if (data.rows.length === 0) {
log.warn('stars', 'user has not starred any packages.')
} else {
data.rows.forEach(function (a) {
output(a.value)
})
}
cb()
}
}