react-life-design
Version:
Life Design UI components
10 lines • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var cellphoneFormat = function (value) {
value = value.replace(/\D/g, '');
value = value.replace(/^(\d{2})(\d)/g, '($1) $2');
value = value.replace(/(\d)(\d{4})$/, '$1-$2');
return value;
};
exports.default = cellphoneFormat;
//# sourceMappingURL=cellphone.js.map