Some things that Lodash provides, like e.g. _.map, can be done just as well with regular JavaScript, with e.g. Array#forEach. We should convert all these calls to their native equivalents.
Because some people might be more familiar with the standard library than Lodash, and because the native implementation will probably be more performant.
Some things that Lodash provides, like e.g.
_.map
, can be done just as well with regular JavaScript, with e.g.Array#forEach
. We should convert all these calls to their native equivalents.