DEV Community

Discussion on: The upside and downside of lodash

Collapse
 
_genjudev profile image
Larson

Core build (~4kB gzipped)
Full build (~24kB gzipped)

Many functions are now available in JavaScript, but loadash is still a valid tool for many things, like deep cloning objects etc.

here a full list: lodash.com/docs/4.17.15

But nice comparison too vanilla.

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
Collapse
 
silverium profile image
Soldeplata Saketos

about deep cloning, check "structuredClone" developer.mozilla.org/en-US/docs/W...