We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
html-comment
1 parent 64229a8 commit ad7e0daCopy full SHA for ad7e0da
src/serializers/html-comment.ts
@@ -3,9 +3,9 @@ const HTML_ELEMENT_REGEXP = /Comment/;
3
const test = (value: any): boolean =>
4
value?.nodeType === 8 && value.constructor !== undefined && HTML_ELEMENT_REGEXP.test(value.constructor.name);
5
6
-const print = (): string => '';
+const serialize = (): string => '';
7
8
export = {
9
- print,
+ serialize,
10
test,
11
};
0 commit comments