Skip to content

Commit

Permalink
Remove redundant gs
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Oct 27, 2023
1 parent f92a036 commit 5a5b365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@glimmer/syntax/lib/generation/printer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface PrinterOptions {
* - Link (component)
*/
export function isVoidTag(tag: string): boolean {
return !!(voidMap.has(tag.toLowerCase()) && tag[0]?.toLowerCase() === tag[0]);
return voidMap.has(tag.toLowerCase()) && tag[0]?.toLowerCase() === tag[0];
}

export default class Printer {
Expand Down

0 comments on commit 5a5b365

Please sign in to comment.