deepdash
Version:
➔ 𝐃eep standalone lib / 𝐋odash extension: ✓ eachDeep ✓ filterDeep ✓ mapDeep ✓ reduceDeep ✓ pickDeep ✓ omitDeep ✓ keysDeep ✓ index ✓ condenseDeep ⋮ Parents stack ⋮ Circular check ⋮ Leaves only mode ⋮ Children mode ⋮ cherry-pick ⋮ esm
22 lines (20 loc) • 505 B
TypeScript
import { Path } from "./Path";
import { IIterateeContext } from "./IIterateeContext";
export default function mapKeysDeep(
obj: any,
callback?: (
value: any,
key: string | number,
parentValue: any,
context: IIterateeContext
) => string|number,
options?: {
pathFormat?: "string" | "array";
checkCircular?: boolean;
childrenPath?: Path[];
includeRoot?: boolean;
leavesOnly?: boolean;
rootIsChildren?: boolean;
callbackAfterIterate?: boolean;
}
): any;