From 3b175890fce123625dabf21434bc792c01909be2 Mon Sep 17 00:00:00 2001 From: soulgalore Date: Sat, 4 May 2024 18:05:50 +0200 Subject: [PATCH] lint --- lib/core/engine/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/core/engine/index.js b/lib/core/engine/index.js index 31367d6aa..3cbea35f1 100644 --- a/lib/core/engine/index.js +++ b/lib/core/engine/index.js @@ -336,7 +336,12 @@ export class Engine { // Backfill the fully loaded data that we extract from the HAR // Only do this if we actually had requests - if (!options.skipHar && extras.har && extras.har.log && extras.har.log.entries.length > 0) { + if ( + !options.skipHar && + extras.har && + extras.har.log && + extras.har.log.entries.length > 0 + ) { const fullyLoadedPerUrl = getFullyLoaded(extras.har); for (let data of fullyLoadedPerUrl) { collector.addFullyLoaded(data.url, data.fullyLoaded);