Remove extra semicolons
This commit is contained in:
Родитель
d2d5e1a83e
Коммит
339a238be3
6
index.js
6
index.js
|
@ -1,8 +1,8 @@
|
||||||
(function(root, factory) {
|
(function(root, factory) {
|
||||||
if (typeof define === 'function' && define.amd) {
|
if (typeof define === 'function' && define.amd) {
|
||||||
define([], factory);
|
define([], factory)
|
||||||
} else {
|
} else {
|
||||||
root.scanForProblems = factory();
|
root.scanForProblems = factory()
|
||||||
}
|
}
|
||||||
}(this, function() {
|
}(this, function() {
|
||||||
function scanForProblems(context, logError) {
|
function scanForProblems(context, logError) {
|
||||||
|
@ -170,4 +170,4 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return scanForProblems
|
return scanForProblems
|
||||||
}));
|
}))
|
||||||
|
|
Загрузка…
Ссылка в новой задаче