Interface ConvertOptions

interface ConvertOptions {
    keepOriginalObject?: boolean;
}

Properties

keepOriginalObject?: boolean

Same object as the one passed in the convert function.

By default, we create a deep copy of the object, but you can specify this if you are okay updating in-place. This increases performance by a lot at scale since we don't need to deep copy the object.