tele_number_utils 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ interface Country {
|
|
|
78
78
|
import { formatter } from "tele_number_utils";
|
|
79
79
|
|
|
80
80
|
// Default grouping [3,3,4]
|
|
81
|
-
console.log(formatter("+
|
|
81
|
+
console.log(formatter("+12345678901")); // "+1 234 567 8901"
|
|
82
82
|
|
|
83
83
|
// Custom grouping with dash separator
|
|
84
84
|
console.log(formatter("+123456789012345", [4, 4, 4, 4], "-")); // "+1 2345-6789-0123-45"
|