Appearance
Create an array with duplicate elements removed.
uniq([1, 2, 1, 1, 2, 3, 4]) // => [1, 2, 3, 4]
const { uniq } = require('rhodash') uniq([1, 2, 1, 1, 2, 3, 4]) // => [1, 2, 3, 4]