forked from ebhomengo/niki
9 lines
206 B
Go
9 lines
206 B
Go
|
package swag
|
||
|
|
||
|
import "unsafe"
|
||
|
|
||
|
// hackStringBytes returns the (unsafe) underlying bytes slice of a string.
|
||
|
func hackStringBytes(str string) []byte {
|
||
|
return unsafe.Slice(unsafe.StringData(str), len(str))
|
||
|
}
|