antares/src/common/libs/getArrayDepth.ts

7 lines
208 B
TypeScript
Raw Normal View History

2022-05-10 12:57:25 +02:00
/* eslint-disable @typescript-eslint/no-explicit-any */
export function getArrayDepth (array: any[]): number {
return Array.isArray(array)
? 1 + Math.max(0, ...array.map(getArrayDepth))
: 0;
}