repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use source loader for email sprite icons
[ProtonMail-WebClient.git]
/
packages
/
utils
/
arraysContainSameElements.ts
blob
2aa3827e2800042f258e8f293999df27ac7a3a58
1
export default function arraysContainSameElements<T>(array1: T[], array2: T[]) {
2
if (array1.length !== array2.length) {
3
return false;
4
}
5
6
return array1.every((element) => array2.includes(element));
7
}