mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
6 lines
123 B
JavaScript
6 lines
123 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (val) {
|
|
return (typeof val === 'undefined' || val === '' || val === null);
|
|
};
|