1import * as _ from 'lodash-es'2import { throwIf } from '../throwErrorF/throwIfF.mts'34export const arrAllSame = (arr : any) => {5 const uniqArr = _.uniq(arr)6 throwIf(() => uniqArr.length != 1, {uniqArr, arr})7 return arr[0]8}