UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 395 B
import { ObjectOrArray } from '../types/basicTypes'; /** * Searches for the shortest string in the array and returns its length. * * Ищет самую короткую строку в массиве и возвращает её длину. * @param data array with data/ массив с данными */ export declare function getMinLengthAllArray(data: ObjectOrArray<string>): number;