tweb/src/components/wrappers/formatUserPhone.ts
Eduard Kuzmenko 25d222ded4 eslint init
2022-08-04 08:49:54 +02:00

12 lines
331 B
TypeScript

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
import {formatPhoneNumber} from '../../helpers/formatPhoneNumber';
export default function formatUserPhone(phone: string) {
return '+' + formatPhoneNumber(phone).formatted;
}