Interface Options

interface Options {
    arrays?: {
        detectMove?: boolean;
        includeValueOnMove?: boolean;
    };
    matchByPosition?: boolean;
    objectHash?: ((item: object, index?: number) => undefined | string);
    propertyFilter?: ((name: string, context: DiffContext) => boolean);
}

Properties

arrays?: {
    detectMove?: boolean;
    includeValueOnMove?: boolean;
}
matchByPosition?: boolean
objectHash?: ((item: object, index?: number) => undefined | string)
propertyFilter?: ((name: string, context: DiffContext) => boolean)