aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/core-utils/common/array.ts
blob: 95393c731107eab04d5e51cf318ce6db47f293c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function findCommonElement <T> (array1: T[], array2: T[]) {
  for (const a of array1) {
    for (const b of array2) {
      if (a === b) return a
    }
  }

  return null
}

// Avoid conflict with other toArray() functions
function arrayify <T> (element: T | T[]) {
  if (Array.isArray(element)) return element

  return [ element ]
}

export {
  findCommonElement,
  arrayify
}