parent
56ff1562e8
commit
ca6ad2d29b
@ -0,0 +1,7 @@
|
||||
//封装字符串相关的方法
|
||||
export function isBlank(value) {
|
||||
value = value.trim();
|
||||
if (value === "" || value === null || value === "string") {
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue