UNPKG

@dvlden/is-webview

Version:

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

11 lines (7 loc) 263 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const isWebview = (userAgent) => { return /webview|wv|ip((?!.*Safari)|(?=.*like Safari))/i.test(userAgent); }; exports.isWebview = isWebview; //# sourceMappingURL=is-webview.js.map