package util

import (
	"sync"
)

func ContainsKey(m *sync.Map, key string) bool {
	_, found := m.Load(key)
	return found
}