2024-08-27 18:45:48 +02:00

14 lines
190 B
Go

//go:build tinygo
// +build tinygo
package fwd
import (
"unsafe"
)
// unsafe cast string as []byte
func unsafestr(b string) []byte {
return unsafe.Slice(unsafe.StringData(b), len(b))
}