Skip to content

Commit da9df95

Browse files
committed
Resolve linting issue
1 parent 5053893 commit da9df95

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/core/src/util/setData.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ const cloneContainer = (data: any): any => {
9595
* properties like `__proto__`, mirroring the semantics of `resolveData`.
9696
*/
9797
const ownPropertyValue = (data: any, segment: string): any =>
98-
data !== null && data !== undefined && Object.prototype.hasOwnProperty.call(data, segment)
98+
data !== null &&
99+
data !== undefined &&
100+
Object.prototype.hasOwnProperty.call(data, segment)
99101
? data[segment]
100102
: undefined;
101103

0 commit comments

Comments
 (0)