1.0.1 • Published 5 years ago

uniq-by v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

uniq-by

For when you just need lodash uniqBy without all the baggage of lodash. It removes duplicate items from an array based on a key.

Installation

npm install uniq-by

Usage

It takes an array and a key and returns unique elements by that key.

const uniqBy = require('uniq-by')
const arr = [
  {
    id: 1,
    name: 'Alice'
  },
  {
    id: 2,
    name: 'Alice'
  },
  {
    id: 1,
    name: 'Bob'
  }
]

uniqBy(arr, 'id') // [{ id: 1, name: 'Alice'}, { id: 2, name: 'Alice'}]
uniqBy(arr, 'name') // [{ id: 1, name: 'Alice'}, { id: 1, name: 'Bob'}]
1.0.1

5 years ago

1.0.0

5 years ago