Expand description
A simple and fast (probably) domain pattern matcher
A quick example of how and what it matches
domain.tld | sub.domain.tld | sub.sub.domain.tld | |
|---|---|---|---|
domain.tld | ✅ | 🅾️ | 🅾️ |
*.domain.tld | ✅ | ✅ | 🅾️ |
+.domain.tld | 🅾️ | ✅ | 🅾️ |
**.domain.tld | ✅ | ✅ | ✅ |
**+.domain.tld | 🅾️ | ✅ | ✅ |
§Implementation notes
There’s some form of algorithmic blow up when doing *.*.*.*.*.*, this could be worked out in future versions, TODO etc