func filterMaps()

in astro/utils.go [43:54]


func filterMaps(a, b map[string]string) bool {
	for key := range a {
		// Key doesn't exist; move on to the next key
		if _, ok := b[key]; !ok {
			continue
		}
		if a[key] != b[key] {
			return false
		}
	}
	return true
}