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.
17 lines (16 loc) • 376 B
JavaScript
;
// src/utils/utils.ts
Object.defineProperty(exports, "__esModule", { value: true });
exports.GeneralUtils = void 0;
/**
* General utility functions
*/
class GeneralUtils {
/**
* Check if a string contains only numeric characters
*/
static isNumeric(value) {
return /^[0-9]+$/.test(value);
}
}
exports.GeneralUtils = GeneralUtils;