DEV Community

Discussion on: Let's talk about Lodash

Collapse
 
thealexkates profile image
Alex Kates

+1 for the

import map from 'lodash/map'

Great tip, Laurie!

Collapse
 
modestfake profile image
Vitalii Saienko

You can also install lodash-es and then use

import { groupBy } from 'lodash-es'
Enter fullscreen mode Exit fullscreen mode

In this case, no Babel plugins are needed, it's tree-shakable by default. And you can use regular imports.