UNPKG

nigerian-mobile-validator

Version:

The most rigorous, up-to-date library for validating Nigerian mobile numbers. Fully NCC-compliant, and security-focused, with enterprise-grade features to prevent the business risks of validation failures in regulated industries.

12 lines (11 loc) 287 B
/** * Represents a Nigerian mobile phone number. */ export interface IMobileNumber { readonly msisdn: string; readonly subscriberNumber: string; readonly countryCode: number; readonly networkCode: number; readonly telco: string; readonly localNumber: string; }