Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/massivefermion/phony
An international phone number validator
https://github.com/massivefermion/phony
erlang gleam google international javascript libphonenumber phone
Last synced: 3 months ago
JSON representation
An international phone number validator
- Host: GitHub
- URL: https://github.com/massivefermion/phony
- Owner: massivefermion
- License: apache-2.0
- Created: 2023-09-22T20:58:02.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-10T07:34:04.000Z (4 months ago)
- Last Synced: 2024-07-10T09:30:00.361Z (4 months ago)
- Topics: erlang, gleam, google, international, javascript, libphonenumber, phone
- Language: Gleam
- Homepage: https://hex.pm/packages/phony
- Size: 865 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gleam - phony - [📚](https://hexdocs.pm/phony/) - An international phone number validator (Packages / Standards)
README
![phony](https://raw.githubusercontent.com/massivefermion/phony/main/banner.png)
[![Package Version](https://img.shields.io/hexpm/v/phony)](https://hex.pm/packages/phony)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/phony/)# phony
An international phone number validator
## Quick start
```sh
gleam test # Run the tests
gleam shell # Run an Erlang shell
```## Installation
This package can be added to your Gleam project:
```sh
gleam add phony
```and its documentation can be found at .
## Usage
```gleam
import phonypub fn main() {
phony.validate("+1 4305573966")
phony.validate("+49 1522 343333")
phony.validate_by_country("09101752439", "IR")
phony.validate_by_code("27111234", "880")
}
```