UNPKG

172 BJavaScriptView Raw
1module.exports = function(a, b) {
2 if (a.length !== b.length) return false;
3 return JSON.stringify(a.map(id => id).sort()) === JSON.stringify(b.map(id => id).sort());
4};