Skip to content

Latest commit

 

History

History

SpecificLodashImport

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

SpecificLodashImport

Usage

$ rcm SpecificLodashImport <path>

From:

import _ from "lodash"

_.map(items, item => console.log(item))

To:

import {map} from "lodash"

map(items, item => console.log(item))