dupes-of-hazard Given an array of values, return all the values that are duplicated. import { getDupes } from 'dupes-of-hazard' const arr = [['id'], ['foo'], ['id'], ['bar']] getDupes(arr) // new Set([['id']])