From 3ac1ee16f377d31a0fb80c8dae28b6239ac4229e Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Sun, 9 Mar 2025 17:47:56 +0100 Subject: [chore] remove vendor --- vendor/codeberg.org/gruf/go-byteutil/bytes.go | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 vendor/codeberg.org/gruf/go-byteutil/bytes.go (limited to 'vendor/codeberg.org/gruf/go-byteutil/bytes.go') diff --git a/vendor/codeberg.org/gruf/go-byteutil/bytes.go b/vendor/codeberg.org/gruf/go-byteutil/bytes.go deleted file mode 100644 index 880cb4b6d..000000000 --- a/vendor/codeberg.org/gruf/go-byteutil/bytes.go +++ /dev/null @@ -1,27 +0,0 @@ -package byteutil - -import ( - "unsafe" -) - -// Copy returns a copy of []byte. -func Copy(b []byte) []byte { - if b == nil { - return nil - } - p := make([]byte, len(b)) - copy(p, b) - return p -} - -// B2S returns a string representation of []byte without allocation. -// Since Go strings are immutable, the bytes passed to String must -// not be modified as long as the returned string value exists. -func B2S(b []byte) string { - return unsafe.String(unsafe.SliceData(b), len(b)) -} - -// S2B returns a []byte representation of string without allocation. -func S2B(s string) []byte { - return unsafe.Slice(unsafe.StringData(s), len(s)) -} -- cgit v1.2.3