@contrail/util 1.1.15-alpha-14 → 1.1.15-alpha-15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -121,7 +121,7 @@ function withTimingSync(label, fn, options) {
|
|
|
121
121
|
}
|
|
122
122
|
function displayTimingTree(nodes = DEFAULT_TIMING_PROFILE.timingSpans, depth = 0, prefix = '') {
|
|
123
123
|
const lines = [];
|
|
124
|
-
const totalWidth =
|
|
124
|
+
const totalWidth = 120;
|
|
125
125
|
const timeWidth = 10;
|
|
126
126
|
const sortedNodes = [...nodes].sort((a, b) => a.startTime - b.startTime);
|
|
127
127
|
const groups = [];
|