UNPKG

@dvlden/is-webview

Version:

Detect if a visitor is coming through a webview or a native browser using user-agent.

7 lines (5 loc) 176 B
const isWebview = (userAgent) => { return /webview|wv|ip((?!.*Safari)|(?=.*like Safari))/i.test(userAgent); }; export { isWebview }; //# sourceMappingURL=is-webview.mjs.map