remove typeof

This commit is contained in:
Ashley Engelund (weedySeaDragon @ github)
2022-12-01 10:09:43 -08:00
parent f036d58ec3
commit bfe3f309d2

View File

@@ -34,7 +34,7 @@ export function addSVGa11yTitleDescription(
a11yDesc: string | null | undefined, a11yDesc: string | null | undefined,
baseId: string baseId: string
) { ) {
if (typeof svg.insert === 'undefined') { if (svg.insert === undefined) {
return; return;
} }