UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 316 B
/** * Returns data by their path. * * Возвращает данные по их пути. * @param item object for work/ объект для работы * @param path data path/ путь к данным */ export declare function getItemByPath<T extends Record<string, any>>(item: T, path: string): string;