Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
eoghanmurray committed Dec 18, 2024
1 parent 339ecdb commit 543ad6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rrweb-snapshot/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ export function splitCssText(
splits.push(cssText);
return splits;
}
let normPart = normalizeCssString(cssText.substring(0, k));
const normPart = normalizeCssString(cssText.substring(0, k));
if (normPart.length === splitNorm) {
splits.push(cssText.substring(0, k));
cssText = cssText.substring(k);
Expand Down

0 comments on commit 543ad6b

Please sign in to comment.