租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
404 B

3 months ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.checkValid = void 0;
  4. function checkValid(_value, _rules) {
  5. _rules.forEach(rule => {
  6. if (rule.validator) {
  7. rule.validator(_value);
  8. }
  9. else if (rule.pattern && !rule.pattern.test(_value)) {
  10. throw new Error(rule.msg);
  11. }
  12. });
  13. }
  14. exports.checkValid = checkValid;