initial commits

master
Charles Iliya Krempeaux 2024-02-13 08:02:34 -08:00
parent 56c81c36cb
commit 4598abae77
1 changed files with 10 additions and 0 deletions

10
string.go 100644
View File

@ -0,0 +1,10 @@
package htmlescape
func String(str string) string {
var buffer [bufferSize]byte
var p []byte = buffer[0:9]
p, _ = AppendString(p, str)
return string(p)
}