fix: missing case

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-04-01 17:54:30 +09:00
parent f39b5be064
commit 4521e61ae2
No known key found for this signature in database
GPG Key ID: 3E87B98A3F6BAB99
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ function h<T extends estree.Node>(
props: Omit<T, 'type'>
): T {
const type = component.replace(/(?:^|-)([a-z])/g, (_, c) => c.toUpperCase());
return Object.assign(props, { type }) as T;
return Object.assign(props || {}, { type }) as T;
}
declare global {