Skip to content

Instantly share code, notes, and snippets.

View Pierre-RA's full-sized avatar
🎯
Focusing

Pierre Repetto-Andipatin Pierre-RA

🎯
Focusing
View GitHub Profile
@Pierre-RA
Pierre-RA / phone.pipe.ts
Last active February 20, 2021 11:13
Angular 2/4 Pretty Phone number pipe
import { Pipe, PipeTransform } from '@angular/core';
import { parsePhoneNumber, CountryCode } from 'libphonenumber-js/min';
@Pipe({
name: 'phone'
})
export class PhonePipe implements PipeTransform {
transform(phoneValue: number | string, country: string): any {
try {