We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yyx990803
Learn more about funding links in repositories.
Report abuse
1 parent 19236d2 commit 25f7a16Copy full SHA for 25f7a16
packages/server-renderer/src/helpers/ssrRenderSlot.ts
@@ -87,11 +87,11 @@ export function ssrRenderSlotInner(
87
}
88
89
90
+const commentTestRE = /^<!--.*-->$/s
91
const commentRE = /<!--[^]*?-->/gm
92
function isComment(item: SSRBufferItem) {
- return (
93
- typeof item === 'string' &&
94
- commentRE.test(item) &&
95
- !item.replace(commentRE, '').trim()
96
- )
+ if (typeof item !== 'string' || !commentTestRE.test(item)) return false
+ // if item is '<!---->' or '<!--[-->' or '<!--]-->', return true directly
+ if (item.length <= 8) return true
+ return !item.replace(commentRE, '').trim()
97
0 commit comments