common.js 74 B

1234
  1. export const clone = (obj) => {
  2. return JSON.parse(JSON.stringify(obj))
  3. }