UNPKG

@takentrade/takentrade-libs

Version:
11 lines (10 loc) 293 B
/** * Formats phone number for display * 2348012345678 → +234 801 234 5678 */ export declare const formatPhoneNumber: (phone: string) => string; /** * Masks phone number for security * +2348012345678 → +234****5678 */ export declare const maskPhoneNumber: (phone: string) => string;