Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/massivefermion/phony

An international phone number validator
https://github.com/massivefermion/phony

erlang gleam google international javascript libphonenumber phone

Last synced: about 2 months ago
JSON representation

An international phone number validator

Awesome Lists containing this project

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 phony

pub fn main() {
phony.validate("+1 4305573966")
phony.validate("+49 1522 343333")
phony.validate_by_country("09101752439", "IR")
phony.validate_by_code("27111234", "880")
}
```