# README
mapUtil
Install
go get -u github.com/jefferyjob/go-easy-utils/mapUtil
Functions
// MapValueExists 判断map中的value是否存在
func MapValueExists(m map[string]interface{}, value interface{}) bool
// MapKeyExists 判断map中的key是否存在
func MapKeyExists(m map[string]interface{}, key string) bool