You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//封装字符串相关的方法
|
|
export function isBlank(value) {
|
|
if (value === "" || value === null || value === undefined) {
|
|
return true;
|
|
}
|
|
value = value.trim();
|
|
if ("" === value || value === "string" || value === "undefined") {
|
|
return true;
|
|
}
|
|
}
|