Home
last modified time | relevance | path

Searched refs:lsTeams (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/libnpmteam/
DREADME.md17 console.log(await team.lsTeams('npm'))
46 * [`lsTeams()`](#ls-teams)
47 * [`lsTeams.stream()`](#ls-teams-stream)
118 #### <a name="ls-teams"></a> `> team.lsTeams(scope, [opts]) -> Promise`
125 await team.lsTeams('@npm', {token: 'myregistrytoken'})
135 #### <a name="ls-teams-stream"></a> `> team.lsTeams.stream(scope, [opts]) -> Stream`
139 For a Promise-based version of these results, see [`team.lsTeams()`](#ls-teams).
144 for await (let team of team.lsTeams.stream('@npm', {token: 'myregistrytoken'})) {
/third_party/node/deps/npm/node_modules/libnpmteam/lib/
Dindex.js62 cmd.lsTeams = (...args) => cmd.lsTeams.stream(...args).collect()
64 cmd.lsTeams.stream = (scope, opts = {}) => {
/third_party/node/deps/npm/test/lib/commands/
Dteam.js16 async lsTeams () {}, method
180 async lsTeams () { method
190 async lsTeams () { method
196 async lsTeams () { method
/third_party/node/deps/npm/lib/commands/
Dteam.js141 const teams = (await libteam.lsTeams(entity, opts)).sort()