This commit is contained in:
xiaozhiyong
2023-02-22 17:21:31 +08:00
parent 83887bdd1f
commit c856bb5318
3 changed files with 21 additions and 7 deletions

View File

@@ -55,3 +55,8 @@ export function isLicensePlate(no) {
export function cellStyle() {
return "text-align:center";
}
export function typeJudgment(object) {
let res = {}.__proto__.toString.call(object);
return res ? res : "";
}