Files
oops-plugin-framework/assets/core/utils/ObjectUtil.ts
2022-07-25 15:18:56 +08:00

59 lines
1.5 KiB
TypeScript

/**
* 对象工具
*/
export default class ObjectUtil {
/**
* 判断指定的值是否为对象
* @param value 值
*/
public static isObject(value: any): boolean {
return Object.prototype.toString.call(value) === '[object Object]';
}
/**
* 深拷贝
* @param target 目标
*/
public static deepCopy(target: any): any {
if (target == null || typeof target !== 'object') {
return target;
}
let result: any = null;
if (target instanceof Date) {
result = new Date();
result.setTime(target.getTime());
return result;
}
if (target instanceof Array) {
result = [];
for (let i = 0, length = target.length; i < length; i++) {
result[i] = this.deepCopy(target[i]);
}
return result;
}
if (target instanceof Object) {
result = {};
for (const key in target) {
if (target.hasOwnProperty(key)) {
result[key] = this.deepCopy(target[key]);
}
}
return result;
}
console.warn(`不支持的类型:${result}`);
}
/**
* 拷贝对象
* @param target 目标
*/
public static copy(target: object): object {
return JSON.parse(JSON.stringify(target));
}
}