File: safe.go

package info (click to toggle)
golang-github-vmihailenco-tagparser.v2 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: makefile: 11
file content (11 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
// +build appengine

package internal

func BytesToString(b []byte) string {
	return string(b)
}

func StringToBytes(s string) []byte {
	return []byte(s)
}