UNPKG

simujs

Version:

A simple JavaScript utility for identifying Tanzanian mobile network operators based on phone numbers, using prefix data regulated by TCRA.

10 lines (9 loc) 188 B
/** * Represents a mobile network operator in Tanzania. */ export interface Operator { name: string; codes: string[]; company: string; financialService: string | null; }