We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa6cb0f commit 54a6fd3Copy full SHA for 54a6fd3
packages/javascript/src/addons/longTasks.ts
@@ -204,7 +204,7 @@ function observeLoAF(onEntry: (e: LongTaskEvent) => void): void {
204
for (const entry of list.getEntries()) {
205
const loaf = entry as LoAFEntry;
206
const durationMs = Math.round(loaf.duration);
207
- const blockingDurationMs = loaf.blockingDuration != null
+ const blockingDurationMs = loaf.blockingDuration !== null
208
? Math.round(loaf.blockingDuration)
209
: null;
210
0 commit comments