mirror of https://github.com/sunface/rust-course
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.
12 lines
285 B
12 lines
285 B
|
6 years ago
|
/**
|
||
|
|
* 判断是否为空
|
||
|
|
* @param {*} value
|
||
|
|
* @returns {Boolean}
|
||
|
|
*/
|
||
|
6 years ago
|
export function isEmpty(value){
|
||
|
6 years ago
|
if(value === null || value === '' || value === 'undefined' || value === undefined || value === 'null' || value.length === 0){
|
||
|
|
return true
|
||
|
6 years ago
|
}
|
||
|
|
|
||
|
|
return false
|
||
|
6 years ago
|
}
|