UNPKG

react-native-permissions

Version:
4 lines (3 loc) 132 B
export function uniq<T>(array: T[]): T[] { return array.filter((item, index) => item != null && array.indexOf(item) === index); }