We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df78893 commit a75a467Copy full SHA for a75a467
.eslintrc.js
@@ -6,6 +6,7 @@ module.exports = {
6
commonjs: true,
7
es2021: true,
8
node: true,
9
+ worker: true,
10
},
11
extends: [
12
'airbnb-base',
src/lib/is-browser.ts
@@ -1,4 +1,6 @@
1
const isBrowser =
2
- typeof window !== 'undefined' && typeof window.document !== 'undefined'
+ (typeof window !== 'undefined' && typeof window.document !== 'undefined') ||
3
+ // eslint-disable-next-line no-restricted-globals
4
+ (typeof self !== 'undefined' && typeof self.postMessage === 'function') // is web worker
5
export default isBrowser
0 commit comments