README ¶ innValidator simple module for validation inn control number Example of usage: package main import ( "fmt" "github.com/SkurkovPavel/innValidator" ) func example() { inn := "1111111111" ok := innValidator.Validate(inn) if !ok { fmt.Printf("Inn is invalid:%v", inn ) } } Expand ▾ Collapse ▴ Documentation ¶ Index ¶ func Validate(inn string) bool Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Validate ¶ func Validate(inn string) bool Validate method of checking the control number for an individual or legal entity Types ¶ This section is empty. Source Files ¶ View all Source files validator.go Click to show internal directories. Click to hide internal directories.