Codebase list certgraph / 601fec45-dd43-4b54-8073-9f45be8e6f1b/upstream/20220513 graph / misc.go
601fec45-dd43-4b54-8073-9f45be8e6f1b/upstream/20220513

Tree @601fec45-dd43-4b54-8073-9f45be8e6f1b/upstream/20220513 (Download .tar.gz)

misc.go @601fec45-dd43-4b54-8073-9f45be8e6f1b/upstream/20220513raw · history · blame

package graph

import (
	"strings"
)

// given a domain returns the non-wildcard version of that domain
func nonWildcard(domain string) string {
	return strings.TrimPrefix(domain, "*.")
}