зеркало из https://github.com/mozilla/gecko-dev.git
Avoid undefined property warnings by checking for null first instead of comparing.
This commit is contained in:
Родитель
727e615361
Коммит
eb8a547f22
|
@ -233,9 +233,9 @@ Engine.prototype = {
|
|||
sum: 0
|
||||
};
|
||||
time.forEach(function(val) {
|
||||
if (val < stat.min || stat.min == null)
|
||||
if (stat.min == null || val < stat.min)
|
||||
stat.min = val;
|
||||
if (val > stat.max || stat.max == null)
|
||||
if (stat.max == null || val > stat.max)
|
||||
stat.max = val;
|
||||
stat.sum += val;
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче