UNPKG

celerichain-ember-cor

Version:

Provides all the core services, decorators and utilities for building a Fleetbase extension for the Console.

9 lines (8 loc) 257 B
export default function arrayUniqueBy(arr, key) { return arr.reduce((unique, item) => { if (!unique.some((existingItem) => existingItem[key] === item[key])) { unique.push(item); } return unique; }, []); }