Skip to content

Commit efaae6d

Browse files
committed
Apply formatting changes
1 parent 93cb523 commit efaae6d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Diff for: packages/rrdom/test/diff/dialog.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ import {
77
Mirror as NodeMirror,
88
serializedNodeWithId,
99
} from 'rrweb-snapshot';
10-
import {
11-
NodeType as RRNodeType,
12-
} from '@rrweb/types';
10+
import { NodeType as RRNodeType } from '@rrweb/types';
1311
import { RRDocument } from '../../src';
1412
import { diff, ReplayerHandler } from '../../src/diff';
1513

Diff for: packages/rrweb-snapshot/src/utils.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,14 @@ export function stringifyStylesheet(s: CSSStyleSheet): string | null {
129129
}
130130
}
131131

132-
export function stringifyCssRules(rules: CSSRuleList, sheetHref: string | null): string {
132+
export function stringifyCssRules(
133+
rules: CSSRuleList,
134+
sheetHref: string | null,
135+
): string {
133136
const stringifiedRules = Array.from(rules, (rule: CSSRule) =>
134137
stringifyRule(rule, sheetHref),
135138
).join('');
136-
return fixBrowserCompatibilityIssuesInCSS(stringifiedRules);
139+
return fixBrowserCompatibilityIssuesInCSS(stringifiedRules);
137140
}
138141

139142
export function stringifyRule(rule: CSSRule, sheetHref: string | null): string {

0 commit comments

Comments
 (0)