UNPKG

react-life-design

Version:
11 lines 390 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var cpfFormat = function (value) { value = value.replace(/\D/g, ''); value = value.replace(/(\d{3})(\d)/, '$1.$2'); value = value.replace(/(\d{3})(\d)/, '$1.$2'); value = value.replace(/(\d{3})(\d{1,2})$/, '$1-$2'); return value; }; exports.default = cpfFormat; //# sourceMappingURL=cpf.js.map