Pinafore-Web-Client-Frontend/src/routes/_utils/userAgent/isFirefox.js

6 lines
191 B
JavaScript

import { thunk } from '../thunk.js'
export const isFirefox = thunk(() => {
return process.browser && typeof InstallTrigger !== 'undefined' // https://stackoverflow.com/a/9851769/680742
})