У меня есть переменная lodash;
var usernames = _.map(data, 'usernames');
который производит следующее:
[
"joebloggs",
"joebloggs",
"simongarfunkel",
"chrispine",
"billgates",
"billgates"
]
Как я могу настроить оператор lodash так, чтобы он возвращал только массив уникальных значений? например.
var username = _.map(data, 'usernames').uniq();