Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 882 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 882 Bytes

GolangCI Version Go Report Card Coverage Status Go Reference

go-tld

Minimalistic library for keeping up to date with TLD checks.

Installation

go get github.com/lawzava/go-tld

Usage

package main

import "github.com/lawzava/go-tld"

func main() {
	tld.IsValid("com") // true
	tld.IsValid("xir") // false
}