blob: cc4ce1516947fea4d7e3a38242ffa47bbe3e88a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// +build appengine
package fasttemplate
func unsafeBytes2String(b []byte) string {
return string(b)
}
func unsafeString2Bytes(s string) []byte {
return []byte(s)
}
|