UNPKG

deepdash-es

Version:

➔ 𝐃eep extension for 𝐋odash-es: ✓ eachDeep ✓ filterDeep ✓ pickDeep ✓ omitDeep ✓ keysDeep ✓ index ✓ condenseDeep ⋮ Parent nodes tracking ⋮ Circular references check ⋮ Leaves only mode ⋮ Path as a valid js string or an array ⋮

17 lines (16 loc) 376 B
import { Path } from "./Path"; import { IDeepEntry } from "./IDeepEntry"; export interface IIterateeContext { path?: Path; childrenPath?: Path; parent?: IDeepEntry; parents?: IDeepEntry[]; obj: any; depth: number; isCircular?: boolean; circularParent?: any; circularParentIndex?: number; isLeaf: boolean; break?: () => false; afterIterate?: boolean; }