7 lines
123 B
XML
7 lines
123 B
XML
var check = function (s) {
|
|
if (s == null || s == '') {
|
|
return "未录入";
|
|
}
|
|
return s;
|
|
}
|
|
module.exports.check = check; |