UNPKG

@cookbook/dot-notation

Version:

Object readings and complex transformations using dot notation syntax.

9 lines (8 loc) 258 B
/** * Create path breadcrumb * @desc parse dot notation syntax into path breadcrumbs * @param {string} path - dot notation path * @return {string[]} */ declare const createPathBreadcrumb: (path: string) => string[]; export default createPathBreadcrumb;