1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00
This commit is contained in:
Adria Navarro 2024-03-15 20:08:59 +01:00
parent 21a387f4fe
commit a78485e325

View file

@ -100,7 +100,7 @@ export async function processObject<T extends Record<string, any>>(
parsedValue = await processObject(object[key], context, opts)
}
;(object as Record<string, any>)[key] = parsedValue
(object as Record<string, any>)[key] = parsedValue
}
}
return object