Home
last modified time | relevance | path

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

/third_party/node/deps/npm/node_modules/libnpmteam/
DREADME.md48 * [`lsUsers()`](#ls-users)
49 * [`lsUsers.stream()`](#ls-users-stream)
155 #### <a name="ls-users"></a> `> team.lsUsers(team, [opts]) -> Promise`
159 For a streamed version of these results, see [`team.lsUsers.stream()`](#ls-users-stream).
164 await team.lsUsers('@npm:cli', {token: 'myregistrytoken'})
172 #### <a name="ls-users-stream"></a> `> team.lsUsers.stream(team, [opts]) -> Stream`
176 For a Promise-based version of these results, see [`team.lsUsers()`](#ls-users).
181 for await (let user of team.lsUsers.stream('@npm:cli', {token: 'myregistrytoken'})) {
/third_party/node/deps/npm/node_modules/libnpmteam/lib/
Dindex.js73 cmd.lsUsers = (...args) => cmd.lsUsers.stream(...args).collect() function in cmd
75 cmd.lsUsers.stream = (entity, opts = {}) => {
/third_party/node/deps/npm/test/lib/commands/
Dteam.js17 async lsUsers () {}, method
266 async lsUsers () { method
272 async lsUsers () { method
278 async lsUsers () { method
/third_party/node/deps/npm/lib/commands/
Dteam.js127 const users = (await libteam.lsUsers(entity, opts)).sort()