Skip to content

Commit

Permalink
fix: coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerAberbach committed Apr 13, 2024
1 parent ea116d3 commit 57dda58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const getFontFaceDecls = (
): FontFaceDecls | null => {
const declsByProp = new Map<string, Declaration>()

for (const node of fontFaceRule.nodes ?? []) {
for (const node of fontFaceRule.nodes!) {
const decl = node as Declaration
const { prop } = decl
if (!FONT_FACE_DECL_PROPS.has(prop)) {
Expand Down

0 comments on commit 57dda58

Please sign in to comment.