Skip to content

Commit 2c9ecbd

Browse files
neuracrcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 604338617
1 parent 3fa2a61 commit 2c9ecbd

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

src/builders/html_sanitizer/html_sanitizer.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ export interface HtmlSanitizer {
3232
/** Implementation for `HtmlSanitizer` */
3333
export class HtmlSanitizerImpl implements HtmlSanitizer {
3434
private changes: string[] = [];
35-
constructor(private readonly sanitizerTable: SanitizerTable, token: object) {
35+
constructor(
36+
private readonly sanitizerTable: SanitizerTable,
37+
token: object,
38+
) {
3639
ensureTokenIsValid(token);
3740
}
3841

test/testing/testvectors/javascript_url_sanitizer_test_vectors.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
// AUTOGENERATED. DO NOT EDIT.
77

88
export class UrlTestVector {
9-
constructor(public input: string, public expected: string) {}
9+
constructor(
10+
public input: string,
11+
public expected: string,
12+
) {}
1013
}
1114

1215
export class UrlTestVectorOnDemandScheme {

test/testing/testvectors/url_test_vectors.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
// AUTOGENERATED. DO NOT EDIT.
77

88
export class UrlTestVector {
9-
constructor(public input: string, public expected: string) {}
9+
constructor(
10+
public input: string,
11+
public expected: string,
12+
) {}
1013
}
1114

1215
export class UrlTestVectorOnDemandScheme {

0 commit comments

Comments
 (0)