Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 5223dc7

Browse files
committed
fix(union): fix removed null
1 parent 11385ff commit 5223dc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/method/union.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export function union(...classes: Array<string | undefined | null | false>): string {
1+
export function union(...classes: Array<string | undefined | false>): string {
22
return classes.filter(Boolean).join(' ');
33
}

0 commit comments

Comments
 (0)