UNPKG

cmq-utils

Version:
7 lines (6 loc) 166 B
/** * 数组和对象深拷贝 * @returns */ declare function deepClone(obj: Record<string, unknown>, hash?: WeakMap<object, any>): any; export default deepClone;