Skip to content

Commit 510d8ad

Browse files
committed
code fix
1 parent a01fc66 commit 510d8ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
const ua = navigator.userAgent.toLowerCase()
22

33
export const isWeChatDevTools = /wechatdevtools/.test(ua)
4-
export const isAndroid = (ua && ua.indexOf('android') > 0)
4+
export const isAndroid = ua && ua.indexOf('android') > 0

0 commit comments

Comments
 (0)