Files
fastpastebin/vendor/github.com/valyala/fasttemplate/unsafe_gae.go
T
2018-04-30 18:42:17 +05:00

12 lines
170 B
Go

// +build appengine
package fasttemplate
func unsafeBytes2String(b []byte) string {
return string(b)
}
func unsafeString2Bytes(s string) []byte {
return []byte(s)
}