UNPKG

@react-form-fields/core

Version:

Material UI Form Fields

12 lines 407 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var zipcode = { apply: function (value) { if (!value) return ''; return value.replace(/^(\d{0,5})(\d{0,3}).*/, '$1-$2').replace(/-$/, ''); }, clean: function (value) { return (value || '').replace(/\D/gi, '').substr(0, 8); } }; exports.default = zipcode; //# sourceMappingURL=zipcode.js.map