Skip to content

Commit a2f586e

Browse files
committed
fix(lint): fix lint issues
1 parent 56c93b5 commit a2f586e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ export const parse = (timingHeader: string): ServerTimings => {
3939
},
4040
]
4141

42-
const metrics = timingHeader.slice().split(',').map((_) => _.trim())
42+
const metrics = timingHeader
43+
.slice()
44+
.split(',')
45+
.map((_) => _.trim())
4346
metrics.forEach((metric) => {
4447
const timing: ServerTiming = {
4548
name: '',

0 commit comments

Comments
 (0)