Advertisement
tonysamperi

007 - deep clone

Aug 13th, 2022
949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // DON'T
  2. const myCopy = JSON.parse(JSON.stringify(myObject));
  3.  
  4. // DO
  5. import {structuredClone} from "@ungap/structured-clone";
  6.  
  7. const myCopy = structuredClone(myObject);
  8.  
  9. // DO
  10. import {cloneDeep} from "lodash";
  11.  
  12. const myCopy = cloneDeep(myObject);
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement