New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

teleformat

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

teleformat

Javascript library for formatting and validating phone numbers

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source

Teleformat

Build Status codecov Maintainability

Teleformat is a lightweight library for formatting phone numbers into a good looking user friendly format. It takes any input which represents a phone number and returns deocrated local and international versions of the number as well as the E.164.

If you are receiving input from users teleformat-input provides functionality to format a phone number as the user types.

Getting started

Install using yarn

yarn add teleformat

or npm

npm install teleformat --save

Call decorate on any phone number to get local, internation and E.164 versions of the number.

import teleformat from 'teleformat'
teleformat.decorate('+447777888888');

This returns an object of the form:

{
  international: '+44 (0) 7777 888888',
  local: '07777 888888',
  e164: '447777888888',
  dialingCode: '44',
  countryCode: 'GB'
}

FAQs

Package last updated on 24 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts