DEV Community

Discussion on: The upside and downside of lodash

Collapse
 
peerreynders profile image
peerreynders

like deep cloning objects

Coming soon: MDN: structuredClone()

And with the Node.js V8 serialization API:

import { deserialize, serialize } from 'v8';

const structuredClone = value => deserialize(serialize(value));
Enter fullscreen mode Exit fullscreen mode