I found this simple-to-use package is-ua-webview
intall: $ npm install is-ua-webview
Javascript:
var isWebview = require('is-ua-webview');
var some_variable = isWebview(navigator.userAgent);
Angular2+:
import * as isWebview from 'is-ua-webview';
const some_variable = isWebview(navigator.userAgent);