Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stars.js « lib « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ef57e2716f52c14be2f26d39a329d4c0f84bec2 (plain)
1
2
3
4
5
6
7
module.exports = stars

function stars (name, cb) {
  name = encodeURIComponent(name)
  var path = "/-/_view/starredByUser?key=\""+name+"\""
  this.request("GET", path, cb)
}