# Pastebin mhfWUyzK arraysEqual( actualTypeCombinations.sort(), expectedTypeCombinations.sort(), (a, b) => { if (Array.isArray(a) && Array.isArray(b)) { return arraysEqual(a.sort(), b.sort()); } else if (typeof a === typeof b) { return a === b; } return false; },