forked from mirrors/Scribe.js
Removing undefined outputs
This commit is contained in:
parent
e0ec8ca186
commit
fced75e219
5 changed files with 9 additions and 7 deletions
10
deps.json
10
deps.json
|
@ -17,7 +17,7 @@
|
||||||
"material": "material",
|
"material": "material",
|
||||||
"licenseType": "MIT",
|
"licenseType": "MIT",
|
||||||
"link": "https://github.com/babel/babel/tree/master/packages/babel-runtime",
|
"link": "https://github.com/babel/babel/tree/master/packages/babel-runtime",
|
||||||
"comment": "6.3.19"
|
"comment": "6.5.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"department": "kessler",
|
"department": "kessler",
|
||||||
|
@ -176,7 +176,7 @@
|
||||||
"material": "material",
|
"material": "material",
|
||||||
"licenseType": "MIT",
|
"licenseType": "MIT",
|
||||||
"link": "https://github.com/moment/moment.git",
|
"link": "https://github.com/moment/moment.git",
|
||||||
"comment": "2.11.1"
|
"comment": "2.11.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"department": "kessler",
|
"department": "kessler",
|
||||||
|
@ -186,7 +186,7 @@
|
||||||
"material": "material",
|
"material": "material",
|
||||||
"licenseType": "MIT",
|
"licenseType": "MIT",
|
||||||
"link": "git://github.com/Automattic/mongoose.git",
|
"link": "git://github.com/Automattic/mongoose.git",
|
||||||
"comment": "4.3.7"
|
"comment": "4.4.3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"department": "kessler",
|
"department": "kessler",
|
||||||
|
@ -196,7 +196,7 @@
|
||||||
"material": "material",
|
"material": "material",
|
||||||
"licenseType": "Artistic-2.0",
|
"licenseType": "Artistic-2.0",
|
||||||
"link": "git+https://github.com/npm/npm.git",
|
"link": "git+https://github.com/npm/npm.git",
|
||||||
"comment": "3.7.1"
|
"comment": "3.7.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"department": "kessler",
|
"department": "kessler",
|
||||||
|
@ -326,7 +326,7 @@
|
||||||
"material": "material",
|
"material": "material",
|
||||||
"licenseType": "MIT",
|
"licenseType": "MIT",
|
||||||
"link": "git://github.com/Automattic/socket.io",
|
"link": "git://github.com/Automattic/socket.io",
|
||||||
"comment": "1.4.5"
|
"comment": "1.4.3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"department": "kessler",
|
"department": "kessler",
|
||||||
|
|
1
dist/transforms/Inspector.js
vendored
1
dist/transforms/Inspector.js
vendored
|
@ -113,6 +113,7 @@ var Inspector = function () {
|
||||||
}, {
|
}, {
|
||||||
key: 'inspectArguments',
|
key: 'inspectArguments',
|
||||||
value: function inspectArguments(data) {
|
value: function inspectArguments(data) {
|
||||||
|
if (!data.length) return '';
|
||||||
return this.format.apply(this, (0, _toConsumableArray3.default)(data.args));
|
return this.format.apply(this, (0, _toConsumableArray3.default)(data.args));
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
|
|
2
public/styles/login.min.css
vendored
2
public/styles/login.min.css
vendored
File diff suppressed because one or more lines are too long
2
public/styles/viewer.min.css
vendored
2
public/styles/viewer.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -50,6 +50,7 @@ export default class Inspector {
|
||||||
}
|
}
|
||||||
|
|
||||||
inspectArguments(data) {
|
inspectArguments(data) {
|
||||||
|
if (!data.length) return '';
|
||||||
return this.format(...data.args);
|
return this.format(...data.args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue