We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44b6815 commit 6a075c6Copy full SHA for 6a075c6
packages/language-core/lib/utils/parseCssVars.ts
@@ -17,7 +17,7 @@ export function* parseCssVars(css: string) {
17
18
export function fillBlank(css: string, ...regs: RegExp[]) {
19
for (const reg of regs) {
20
- css = css.replace(reg, (match) => ' '.repeat(match.length));
+ css = css.replace(reg, match => ' '.repeat(match.length));
21
}
22
return css;
23
0 commit comments