Interface GetAtPathOptions

Options for getting a value at a path.

interface GetAtPathOptions {
    separator?: string;
    throwOnNotFound?: boolean;
}

Properties

separator?: string

The separator for the path (default: ".").

throwOnNotFound?: boolean

Whether to throw an error if the path is not found (default: false).