/** * Compares two lists of Strings/Numbers and returns the values that are in common (intersect) between the two lists * @param {Array} arr1 - An Array of Strings/Numbers * @param {Array} arr2 - An Array of Strings/Numbers * @returns {Array} The values in common between the two lists */ export default function intersection(arr1: T, arr2: T): T