fix(utils): circular dependency

This commit is contained in:
chenjiahan
2020-09-28 17:48:07 +08:00
parent 4c369cb266
commit 7007fcf9ea
7 changed files with 46 additions and 45 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { inBrowser } from '..';
import { inBrowser } from '../base';
export function isAndroid(): boolean {
return inBrowser ? /android/.test(navigator.userAgent.toLowerCase()) : false;