Skip to content

Commit 314a359

Browse files
committed
🎉 feat: use ?. to handle undefined property
1 parent eca8668 commit 314a359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { TAnySchema } from '@sinclair/typebox'
99

1010
export const benchmark = <T extends TAnySchema>(
1111
model: T,
12-
value: T['static']
12+
value: T['static'],
1313
options?: Parameters<typeof createMirror>[1]
1414
) => {
1515
const mirror = createMirror(model, {

0 commit comments

Comments
 (0)