summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-client/lib/team.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npm-registry-client/lib/team.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/lib/team.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/lib/team.js b/deps/npm/node_modules/npm-registry-client/lib/team.js
index 327fa9cd5a..3e3794e047 100644
--- a/deps/npm/node_modules/npm-registry-client/lib/team.js
+++ b/deps/npm/node_modules/npm-registry-client/lib/team.js
@@ -85,7 +85,7 @@ function apiUri (registryUri) {
function teamAssertions (subcommand, uri, params, cb) {
assert(subcommand, 'subcommand is required')
assert(subcommands.hasOwnProperty(subcommand),
- 'team subcommand must be one of ' + Object.keys(subcommands))
+ 'team subcommand must be one of ' + Object.keys(subcommands))
assert(typeof uri === 'string', 'registry URI is required')
assert(typeof params === 'object', 'params are required')
assert(typeof params.auth === 'object', 'auth is required')
@@ -100,6 +100,6 @@ function teamAssertions (subcommand, uri, params, cb) {
if (subcommand === 'edit') {
assert(typeof params.users === 'object' &&
params.users.length != null,
- 'users is required')
+ 'users is required')
}
}