yznts / kyoto

Asynchronous frontends with Go
https://pkg.go.dev/github.com/yznts/kyoto/v3
MIT License
651 stars 28 forks source link

chore: remove allocations #64

Closed bketelsen closed 2 years ago

bketelsen commented 2 years ago

This small PR removes several allocations in core.templates.go by using strings.Builder instead of concatenating strings, which allocates a new string each time.

yznts commented 2 years ago

Thank you for this improvement!