|
const isJsDom = |
|
(typeof window !== "undefined" && window.name === "nodejs") || |
|
(typeof navigator !== "undefined" && |
|
(navigator.userAgent.includes("Node.js") || |
|
navigator.userAgent.includes("jsdom"))); |
$ node
Welcome to Node.js v21.1.0.
Type ".help" for more information.
>
> isJsDom =
... (typeof window !== "undefined" && window.name === "nodejs") ||
... (typeof navigator !== "undefined" &&
... (navigator.userAgent.includes("Node.js") ||
... navigator.userAgent.includes("jsdom")));
true
browser-or-node/src/index.js
Lines 18 to 22 in 9875469