From d63f4912ec93c0992d1152b6c1dab7c0e2d0bf20 Mon Sep 17 00:00:00 2001 From: Patrick Hulce Date: Mon, 4 Jun 2018 11:41:26 -0700 Subject: [PATCH] semicolon --- lighthouse-core/gather/computed/trace-of-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-core/gather/computed/trace-of-tab.js b/lighthouse-core/gather/computed/trace-of-tab.js index 1030972f0b39..ac1bbfc5b00b 100644 --- a/lighthouse-core/gather/computed/trace-of-tab.js +++ b/lighthouse-core/gather/computed/trace-of-tab.js @@ -46,7 +46,7 @@ class TraceOfTab extends ComputedArtifact { return e.cat.includes('blink.user_timing') || e.cat.includes('loading') || e.cat.includes('devtools.timeline') || - e.cat === '__metadata' + e.cat === '__metadata'; }) // @ts-ignore - stableSort added to Array by WebInspector. .stableSort((event0, event1) => event0.ts - event1.ts);