UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

7 lines (6 loc) 289 B
/** * To solve index path bug please read this for more detail. * https://stackoverflow.com/questions/6393943/convert-javascript-string-in-dot-notation-into-an-object-reference */ declare const findDeepValue: <R>(obj: any, path?: string) => R | undefined; export default findDeepValue;