Skip to content

Commit a75a467

Browse files
authored
fix: detect web worker (#1711)
1 parent df78893 commit a75a467

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
commonjs: true,
77
es2021: true,
88
node: true,
9+
worker: true,
910
},
1011
extends: [
1112
'airbnb-base',

src/lib/is-browser.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
const isBrowser =
2-
typeof window !== 'undefined' && typeof window.document !== 'undefined'
2+
(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
35

46
export default isBrowser

0 commit comments

Comments
 (0)