File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 7
7
Mirror as NodeMirror ,
8
8
serializedNodeWithId ,
9
9
} from 'rrweb-snapshot' ;
10
- import {
11
- NodeType as RRNodeType ,
12
- } from '@rrweb/types' ;
10
+ import { NodeType as RRNodeType } from '@rrweb/types' ;
13
11
import { RRDocument } from '../../src' ;
14
12
import { diff , ReplayerHandler } from '../../src/diff' ;
15
13
Original file line number Diff line number Diff line change @@ -129,11 +129,14 @@ export function stringifyStylesheet(s: CSSStyleSheet): string | null {
129
129
}
130
130
}
131
131
132
- export function stringifyCssRules ( rules : CSSRuleList , sheetHref : string | null ) : string {
132
+ export function stringifyCssRules (
133
+ rules : CSSRuleList ,
134
+ sheetHref : string | null ,
135
+ ) : string {
133
136
const stringifiedRules = Array . from ( rules , ( rule : CSSRule ) =>
134
137
stringifyRule ( rule , sheetHref ) ,
135
138
) . join ( '' ) ;
136
- return fixBrowserCompatibilityIssuesInCSS ( stringifiedRules ) ;
139
+ return fixBrowserCompatibilityIssuesInCSS ( stringifiedRules ) ;
137
140
}
138
141
139
142
export function stringifyRule ( rule : CSSRule , sheetHref : string | null ) : string {
You can’t perform that action at this time.
0 commit comments