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