Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-libphonenumber-js

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-libphonenumber-js

Expose libphonenumber-js to your ember project (with template helpers)

  • 0.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ember-libphonenumber-js npm version Build Status Greenkeeper badge Ember Observer Score

This addon provides a way to add Google's libphonenumber to your ember project using libphonenumber-js from https://github.com/catamphetamine/libphonenumber-js. This version of libphonenumber is much lighter than Google's, coming in at 120 KB.

Additionally, this addon provides some template helper (format only at this time). Computed properties are coming soon.

Compatibility

  • Ember.js v2.18 or above
  • Ember CLI v2.13 or above

Installation

  • ember install ember-libphonenumber-js

Usage

import { parse, format } from 'libphonenumber-js'

parse('8 (800) 555 35 35', 'RU')
// { country: 'RU', phone: '8005553535' }

format('2133734253', 'US', 'International')
// '+1 213 373 4253'

For other uses, please visit https://github.com/catamphetamine/libphonenumber-js

Template Helper

The helper takes 2 parameters, a phone number and a 2 byte country code (ex: 'US'). Additionally, you can force international formatting by providing forceIntl=true.

{{format-phonenumber '6615551212' 'US'}} {{!-- (661) 555-1212 --}}
With forceIntl=true
{{format-phonenumber '6615551212' 'US' forceIntl=true}} {{!-- +1 661 555 1212 --}}

Keywords

FAQs

Package last updated on 17 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc