UNPKG

igi_orion_cignacmb

Version:

Censors words out of text

23 lines (17 loc) 501 B
var CentralValidator = require('./CentralValidator'); var input = $.extend({}, CentralValidator, { validateMobile: function (value) { var result = { isCorrect:true, type:"modal", msg:"不能为空", code:"" }; if (value == -1 || value == 0) { result.isCorrect = false; result.msg = "请选择证件类型" } return result; }, }); module.exports = input;