Skip to content

Commit d3221d8

Browse files
format
1 parent 1723765 commit d3221d8

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

src/lib/config.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,15 @@ const config = {
5454
system.getInstaller(
5555
(installer) => {
5656
config.IAP_AVAILABLE =
57-
typeof iap !== "undefined" && installer != null && installer !== "null" &&
57+
typeof iap !== "undefined" &&
58+
installer != null &&
59+
installer !== "null" &&
5860
installer === "com.android.vending";
5961
},
6062
(error) => {
61-
console.error(error);
62-
config.IAP_AVAILABLE = true;
63-
}
64-
)
63+
console.error(error);
64+
config.IAP_AVAILABLE = true;
65+
},
66+
);
6567

66-
export default config;
68+
export default config;

0 commit comments

Comments
 (0)