UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

6 lines (5 loc) 223 B
/** * Get the value at path of Map. Useful for nested maps (d3-array group, etc). * Similar to lodash get() but for Map instead of Object */ export declare function get<K, V>(map: Map<K, V>, path: string[]): Map<K, V>;