This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus/pkg/nex/encode.go
2024-10-21 00:05:40 +08:00

15 lines
260 B
Go

package nex
import jsoniter "github.com/json-iterator/go"
func EncodeMap(data any) []byte {
raw, _ := jsoniter.Marshal(data)
return raw
}
func DecodeMap(raw []byte) map[string]any {
var out map[string]any
_ = jsoniter.Unmarshal(raw, &out)
return out
}