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