//go:build go1.20
// +build go1.20

package fasthttp

import 

// s2b converts string to a byte slice without memory allocation.
func s2b( string) []byte {
	return unsafe.Slice(unsafe.StringData(), len())
}