Skip to content

Commit 7df62ae

Browse files
committed
Whitespace
1 parent 70b40c4 commit 7df62ae

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

miniprofiler.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Miniprofiler implementation for node.js.
3-
*
3+
*
44
* Apache License, Version 2.0
55
*
66
* Kevin Montrose, 2013
@@ -211,7 +211,7 @@ function getProfiling(id){
211211

212212
/*
213213
* Modifies `toInstrument` such that each function has been instrumented for miniprofiler purposes.
214-
*
214+
*
215215
*
216216
* Descends recursively, but will terminate even if there are cycles in the object graph.
217217
*
@@ -357,10 +357,10 @@ function timeQuery(extension, type, query, executeFunction) {
357357
extension.stepGraph.customTimings[type] = [];
358358
}
359359

360-
var customTiming = {
361-
id: makeGuid(),
362-
executeType: type,
363-
commandString: htmlEscape(query),
360+
var customTiming = {
361+
id: makeGuid(),
362+
executeType: type,
363+
commandString: htmlEscape(query),
364364
startTime: time,
365365
startDate: startDate,
366366
callStack: new Error().stack
@@ -420,7 +420,7 @@ function makeGuid() {
420420

421421
function describePerformance(root, request) {
422422
var ret = {};
423-
423+
424424
ret.Id = root.id;
425425
ret.Name = request.path;
426426
ret.Started = root.startDate;
@@ -588,4 +588,4 @@ function addProfilingImpl(toInstrument) {
588588
continue;
589589
}
590590
}
591-
}
591+
}

0 commit comments

Comments
 (0)