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.

13 lines (12 loc) 238 B
// src/utils/utils.ts /** * General utility functions */ export class GeneralUtils { /** * Check if a string contains only numeric characters */ static isNumeric(value) { return /^[0-9]+$/.test(value); } }