There was an error while loading. Please reload this page.
1 parent 5053893 commit da9df95Copy full SHA for da9df95
1 file changed
packages/core/src/util/setData.ts
@@ -95,7 +95,9 @@ const cloneContainer = (data: any): any => {
95
* properties like `__proto__`, mirroring the semantics of `resolveData`.
96
*/
97
const ownPropertyValue = (data: any, segment: string): any =>
98
- data !== null && data !== undefined && Object.prototype.hasOwnProperty.call(data, segment)
+ data !== null &&
99
+ data !== undefined &&
100
+ Object.prototype.hasOwnProperty.call(data, segment)
101
? data[segment]
102
: undefined;
103
0 commit comments