Commit def810c

Anton Medvedev <anton@medv.io>
2022-06-09 08:59:33
Code style
1 parent 2967377
Changed files (1)
src/log.ts
@@ -37,7 +37,10 @@ export type LogEntry =
       url: RequestInfo
       init?: RequestInit
     }
-  | { kind: 'custom'; data: any }
+  | {
+      kind: 'custom'
+      data: any
+    }
 
 export function log(entry: LogEntry) {
   switch (entry.kind) {