aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/core-utils/utils/array.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/core-utils/utils/array.ts')
-rw-r--r--shared/core-utils/utils/array.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/shared/core-utils/utils/array.ts b/shared/core-utils/utils/array.ts
new file mode 100644
index 000000000..9e326a5aa
--- /dev/null
+++ b/shared/core-utils/utils/array.ts
@@ -0,0 +1,13 @@
1function 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
11export {
12 findCommonElement
13}