We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bacd071 commit 346f9bbCopy full SHA for 346f9bb
lib/commands/install.js
@@ -23,11 +23,11 @@ function command(argv,result) {
23
return result.help(command);
24
}
25
26
- var data = {}
+ var data = {};
27
var m = /^(.+)@(.+)$/.exec(module);
28
if (m) {
29
data.module = m[1];
30
- data.version = m[2]
+ data.version = m[2];
31
} else {
32
data.module = module;
33
lib/result.js
@@ -150,7 +150,7 @@ module.exports = {
150
},
151
warn:function(msg) {
152
if (process.env.NR_TRACE && msg.stack) {
153
- console.warn(msg.stack)
+ console.warn(msg.stack);
154
155
if (msg.response) {
156
if (msg.response.status === 401) {
0 commit comments