UNPKG

347 BJavaScriptView Raw
1export default {
2 get name() {
3 return 'ExpoWebBrowser';
4 },
5 async openBrowserAsync(url, browserParams = {}) {
6 const { windowName = '_blank', windowFeatures } = browserParams;
7 window.open(url, windowName, windowFeatures);
8 return { type: 'dismiss' };
9 },
10};
11//# sourceMappingURL=ExpoWebBrowser.web.js.map
\No newline at end of file