Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Oct 24, 2024
1 parent 44b6815 commit 6a075c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/language-core/lib/utils/parseCssVars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function* parseCssVars(css: string) {

export function fillBlank(css: string, ...regs: RegExp[]) {
for (const reg of regs) {
css = css.replace(reg, (match) => ' '.repeat(match.length));
css = css.replace(reg, match => ' '.repeat(match.length));
}
return css;
}

0 comments on commit 6a075c6

Please sign in to comment.