Home

Awesome

phony

Package Version Hex Docs

phony

An international phone number validator

<img width=32 src="https://raw.githubusercontent.com/massivefermion/phony/main/icon.png"> Quick start

gleam test  # Run the tests
gleam shell # Run an Erlang shell

<img width=32 src="https://raw.githubusercontent.com/massivefermion/phony/main/icon.png"> Installation

This package can be added to your Gleam project:

gleam add phony

and its documentation can be found at https://hexdocs.pm/phony.

<img width=32 src="https://raw.githubusercontent.com/massivefermion/phony/main/icon.png"> Usage

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")
}