export function arrayAdd()

in helper/src/components/common.js [5:7]


export function arrayAdd(array, key) {
    return array.includes(key) ? array : array.concat(key)
}