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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2017-05-27 23:45:35 +0300
committerKat Marchán <kzm@sykosomatic.org>2017-05-31 09:00:38 +0300
commit3cb8432397b3666d88c31131dbb4599016a983ff (patch)
tree2265e0056f0db43c010cb8a0c8b328c491036f9e /bin/npm-cli.js
parent9f814831d330dde7702973186aea06caaa77ff31 (diff)
standard: minor linter fix
Credit: @zkat
Diffstat (limited to 'bin/npm-cli.js')
-rwxr-xr-xbin/npm-cli.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/npm-cli.js b/bin/npm-cli.js
index 8dbfdc3e1..e2c013b5d 100755
--- a/bin/npm-cli.js
+++ b/bin/npm-cli.js
@@ -83,7 +83,7 @@
if (er) return errorHandler(er)
npm.commands[npm.command](npm.argv, function (err) {
// https://www.youtube.com/watch?v=7nfPu8qTiQU
- if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command != 'completion') {
+ if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command !== 'completion') {
output('\n 🎵 I Have the Honour to Be Your Obedient Servant,🎵 ~ npm 📜🖋\n')
}
errorHandler.apply(this, arguments)