# 工具函数
提示
主要是对一些常用 &
复杂通用工具函数进行定义
# type.ts
/*
* @Author: Rainy
* @Date: 2019-11-21 19:02:37
* @LastEditors: Rainy
* @LastEditTime: 2019-11-21 20:12:23
*/
export function isAbsType(target: any): string {
// [object Object] -> object
return Object.prototype.toString
.call(target)
.split(' ')[1]
.slice(0, -1)
.toLowerCase();
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15