UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 352 B
import { ObjectOrArray } from '../types/basicTypes'; /** * Returns the length of all elements in an array. * * Возвращает длину всех элементов в виде массива. * @param value input value/ входное значение */ export declare function getLengthOfAllArray(value: ObjectOrArray<string>): number[];