Validate Swedish social security numbers.
go get -u github.com/personnummer/go
package main
import (
personnummer "github.com/personnummer/go"
)
func main() {
personnummer.Valid(6403273813)
//=> true
personnummer.Valid("19900101-0017")
//=> true
// works with co-ordination numbers
personnummer.Valid("701063-2391")
//=> true
personnummer.Valid("510818-916")
//=> false
}
MIT