kon/vendor/github.com/gofiber/fiber/v2/utils/deprecated.go

17 lines
337 B
Go
Raw Normal View History

2024-07-02 16:36:04 +02:00
package utils
// Deprecated: Please use UnsafeString instead
func GetString(b []byte) string {
return UnsafeString(b)
}
// Deprecated: Please use UnsafeBytes instead
func GetBytes(s string) []byte {
return UnsafeBytes(s)
}
// Deprecated: Please use CopyString instead
func ImmutableString(s string) string {
return CopyString(s)
}