phone number

master
Charles Iliya Krempeaux 2021-11-22 10:07:00 -08:00
parent 7f4a6b624f
commit 1c4795015e
1 changed files with 15 additions and 0 deletions

View File

@ -15,6 +15,21 @@ func Bool() bool {
}
// PhoneNumber returns an arbitrary phonenumber.
//
// Some example phonenumber include:
//
// 289-5625421
// (604) 585-1234
// ٠٩٦-٣٦١-٦٦٧٦
// 613/978-1920
// +20-13-004-6453
// (782) 440 6832
// +٢٠-٩٣-٧٤٨-٧٩٨١
// 093-340-0709
// +1-403-870-6449
// +18250827424
//
// (Note that there are other phonenumber formats too, in addition to the formats that are implied by the examples provided here.)
func PhoneNumber() string {
return Default.PhoneNumber()
}