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']])
Get a set of duplicates from an array.
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']])