Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Last active September 1, 2023 10:29
Show Gist options
  • Select an option

  • Save rcdexta/77e2198e4b552b027e12480e3c7a1922 to your computer and use it in GitHub Desktop.

Select an option

Save rcdexta/77e2198e4b552b027e12480e3c7a1922 to your computer and use it in GitHub Desktop.
Effectively import functions from libararies
//1. Import the entire lodash library and add it to the bundle
import lodash from 'lodash'
lodash.groupBy(rows, 'id')
//2. Import only the required function from lodash
import groupBy from 'lodash/groupBy'
groupBy(rows, 'id')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment