@hclsoftware/secagent
Version:
IAST agent
22 lines (19 loc) • 511 B
TypeScript
import { Path } from "./Path";
import { IIterateeContext } from "./IIterateeContext";
export default function someDeep(
obj: any,
callback?: (
value: any,
key: string | number,
parentValue: any,
context: IIterateeContext
) => void | boolean,
options?: {
pathFormat?: "string" | "array"; // = "string";
checkCircular?: boolean; // = false;
childrenPath?: Path[];
includeRoot?: boolean;
leavesOnly?: boolean; // = false;
rootIsChildren?: boolean;
}
): boolean;