Skip to content

Commit 25f7a16

Browse files
authoredJun 13, 2022
perf(ssr): improve isComment check (#6078)
1 parent 19236d2 commit 25f7a16

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎packages/server-renderer/src/helpers/ssrRenderSlot.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ export function ssrRenderSlotInner(
8787
}
8888
}
8989

90+
const commentTestRE = /^<!--.*-->$/s
9091
const commentRE = /<!--[^]*?-->/gm
9192
function isComment(item: SSRBufferItem) {
92-
return (
93-
typeof item === 'string' &&
94-
commentRE.test(item) &&
95-
!item.replace(commentRE, '').trim()
96-
)
93+
if (typeof item !== 'string' || !commentTestRE.test(item)) return false
94+
// if item is '<!---->' or '<!--[-->' or '<!--]-->', return true directly
95+
if (item.length <= 8) return true
96+
return !item.replace(commentRE, '').trim()
9797
}

0 commit comments

Comments
 (0)
Please sign in to comment.