Skip to content

Instantly share code, notes, and snippets.

View Chamuth's full-sized avatar
🏠
Working from home

Chamuth Chamandana Chamuth

🏠
Working from home
View GitHub Profile
@Chamuth
Chamuth / lkphones.ts
Created November 21, 2018 04:12
Validate Sri Lankan phones numbers and get their carrier
export module LKPhoneValidator
{
export function Validate(phone : string) : PhoneValidation
{
// remove starting +94
phone = phone.replace("+94", "0");
// Consider number length
if ((phone.startsWith('0') && phone.length == 10) || (!phone.startsWith('0') && phone.length == 9) && /^\d+$/.test(phone))
{