/** * 是否是可遍历对象 * @category Object */ export const jsonClone = (val: K): K => JSON.parse(JSON.stringify(val));