Skip to content

Commit

Permalink
Add break to short circuit when normalized string found
Browse files Browse the repository at this point in the history
Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
  • Loading branch information
eoghanmurray and Juice10 committed Aug 2, 2024
1 parent 83b3482 commit 63d79fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/rrweb-snapshot/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@ export function splitCssText(
) {
splits.push(cssText.substring(0, k));
cssText = cssText.substring(k);
break;
}
}
break;
Expand Down

0 comments on commit 63d79fb

Please sign in to comment.