mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
* feat: POINT field support * feat(MySQL): support to LINESTRING, POLYGON and GEOMETRY fields * refactor: removed links from map attribution * feat(MySQL): support to MULTIPOINT, MULTILINESTRING, MULTIPOLYGON and GEOMCOLLECTION fields * test: temporary fix on Windows tests
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
/**
|
|
*
|
|
* @param {any[]} array
|
|
* @returns {number}
|
|
*/
|
|
export function getArrayDepth (array) {
|
|
return Array.isArray(array)
|
|
? 1 + Math.max(0, ...array.map(getArrayDepth))
|
|
: 0;
|
|
}
|