Skip to content

Commit fe7ddb0

Browse files
committed
perf: concate with prev content string
1 parent b160b9d commit fe7ddb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function postHTMLParser(html, options) {
114114
}
115115

116116
if (last.content && last.content.length && typeof last.content[last.content.length - 1] === 'string') {
117-
last.content[last.content.length - 1] = last.content[last.content.length - 1] + text
117+
last.content[last.content.length - 1] = `${last.content[last.content.length - 1]}${text}`
118118
return
119119
}
120120

0 commit comments

Comments
 (0)