perf(ssr): improve isComment check (#6078)

This commit is contained in:
Hitesh Khandelwal 2022-06-13 08:36:15 +05:30 committed by GitHub
parent 19236d2c90
commit 25f7a16a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,11 +87,11 @@ export function ssrRenderSlotInner(
} }
} }
const commentTestRE = /^<!--.*-->$/s
const commentRE = /<!--[^]*?-->/gm const commentRE = /<!--[^]*?-->/gm
function isComment(item: SSRBufferItem) { function isComment(item: SSRBufferItem) {
return ( if (typeof item !== 'string' || !commentTestRE.test(item)) return false
typeof item === 'string' && // if item is '<!---->' or '<!--[-->' or '<!--]-->', return true directly
commentRE.test(item) && if (item.length <= 8) return true
!item.replace(commentRE, '').trim() return !item.replace(commentRE, '').trim()
)
} }