Skip to content

Commit f97a3e9

Browse files
committed
Check existence of start/stop parameters
1 parent f6950d4 commit f97a3e9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/miniprofiler.js

+4
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,10 @@ function describePerformance(root, request) {
406406
}
407407

408408
function diff(start, stop){
409+
if (!start || !stop) {
410+
return 0;
411+
}
412+
409413
var deltaSecs = stop[0] - start[0];
410414
var deltaNanoSecs = stop[1] - start[1];
411415

0 commit comments

Comments
 (0)