]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/core-utils/utils/array.ts
chore(refactor): remove shared folder dependencies to the server
[github/Chocobozzz/PeerTube.git] / shared / core-utils / utils / array.ts
1 function findCommonElement <T> (array1: T[], array2: T[]) {
2 for (const a of array1) {
3 for (const b of array2) {
4 if (a === b) return a
5 }
6 }
7
8 return null
9 }
10
11 export {
12 findCommonElement
13 }