Skip to content

Commit b5f43d4

Browse files
authored
Merge pull request infinitered#599 from infinitered/lint-town
🚨 Delints mst
2 parents 3b6118f + 1125eb2 commit b5f43d4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/reactotron-mst/src/reactotron-mst.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ import {
4343
const dotPath = (fullPath: string, o: any) => path(split(".", fullPath), o)
4444
const isNilOrEmpty = (value: any) => isNil(value) || isEmpty(value)
4545
const isReactNativeEvent = (value: any) =>
46-
typeof value !== 'undefined' && value !== null && has("nativeEvent", value) && has("target", value) && has("type", value)
46+
typeof value !== "undefined" &&
47+
value !== null &&
48+
has("nativeEvent", value) &&
49+
has("target", value) &&
50+
has("type", value)
4751

4852
/**
4953
* Sadly, this protects calls from endless stack traces. We have to filter

0 commit comments

Comments
 (0)