From 1c4795015ec1bd3e591ffeb42a616cd592b8769b Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Mon, 22 Nov 2021 10:07:00 -0800 Subject: [PATCH] phone number --- default.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/default.go b/default.go index bac8e7e..933ee7a 100644 --- a/default.go +++ b/default.go @@ -15,6 +15,21 @@ func Bool() bool { } // PhoneNumber returns an arbitrary phone‐number. +// +// Some example phone‐number 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 phone‐number formats too, in addition to the formats that are implied by the examples provided here.) func PhoneNumber() string { return Default.PhoneNumber() }