I once used Lodash _.pluck...I loved pluck...
_.pluck
Realizing Lodash no longer supports pluck (as of Lodash 4.x), I\'m struggling to remember wha
pluck
If you really want _.pluck support back, you can use a mixin:
const _ = require("lodash") _.mixin({ pluck: _.map })
Because map now supports a string (the "iterator") as an argument instead of a function.
map