Closed postmodern closed 6 days ago
It should be possible to compare a Network::Wildcard object with another host name or even TLD.
Network::Wildcard
wildcard = Network::Wildcard.new('*.example.com') wildcard === 'www.example.com' # => true
wildcard = Network::Wildcard.new('gov.*') wildcard === 'gov.ac' # => true
Implemented by 187888a.
It should be possible to compare a
Network::Wildcard
object with another host name or even TLD.Example