1
0
Fork 0

fix prettier issue

pull/1855/head
Benedek Kozma 2024-10-16 17:22:54 +02:00
parent 5fc21de45e
commit e9bcf2a4e4
1 changed files with 4 additions and 1 deletions

View File

@ -324,7 +324,10 @@ export function endGroup(): void {
* @param name The name of the group * @param name The name of the group
* @param fn The function to wrap in the group * @param fn The function to wrap in the group
*/ */
export async function group<T>(name: string, fn: () => T | Promise<T>): Promise<T> { export async function group<T>(
name: string,
fn: () => T | Promise<T>
): Promise<T> {
startGroup(name) startGroup(name)
let result: T let result: T