SyntaxFix
Write A Post
Hire A Developer
Questions
If you really want _.pluck support back, you can use a mixin:
_.pluck
const _ = require("lodash") _.mixin({ pluck: _.map })
Because map now supports a string (the "iterator") as an argument instead of a function.
map