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.
- Ember.js v2.18 or above
- Ember CLI v2.13 or above
- ember install ember-libphonenumber-js
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
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
.