Codebase list certgraph / run/d960c48e-a500-4dea-b2c1-f3dce5bee045/upstream graph / misc.go
run/d960c48e-a500-4dea-b2c1-f3dce5bee045/upstream

Tree @run/d960c48e-a500-4dea-b2c1-f3dce5bee045/upstream (Download .tar.gz)

misc.go @run/d960c48e-a500-4dea-b2c1-f3dce5bee045/upstreamraw · 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, "*.")
}