/go

Validate Swedish social security numbers

Primary LanguageGoMIT LicenseMIT

personnummer Build Status GoDoc Go Report Card

Validate Swedish social security numbers.

Installation

go get -u github.com/personnummer/go

Example

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
}

License

MIT