@sebgroup/frontend-tools
Version:
A set of frontend tools
16 lines (12 loc) • 387 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* Check if the current browser is Chrome
* @returns {boolean} True if Chrome
*/
function isBrowserChrome() {
return (!!window.chrome &&
(!!window.chrome.webstore || !!window.chrome.runtime));
}
exports.isBrowserChrome = isBrowserChrome;
//# sourceMappingURL=isBrowserChrome.js.map