processes() fixed Node Version 8 compatibility issue

This commit is contained in:
Sebastian Hildebrandt
2023-01-29 20:52:01 +01:00
parent c4b67ba99b
commit b3b82ed6bf
4 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ function parseElapsedTime(etime) {
try {
res = new Date(current.getTime() - ms);
result = res.toISOString().substring(0, 10) + ' ' + res.toISOString().substring(11, 19);
} catch {
} catch (e) {
util.noop();
}
return result;