Browser or Node.js

Check in which environment the code is running - browser/node.js/webworker/jsdom/deno.
[!NOTE]
To help release v3.0.0, please try v3.0.0-pre.0 and let us know if you run into issues.
Install
$ npm install --save browser-or-node
Usage
Import the checks and use it in your code. Works with both ESM and CJS imports.
import * as jsEnv from "browser-or-node";
if (jsEnv.isBrowser) {
}
if (jsEnv.isNode) {
}
if (jsEnv.isWebWorker) {
}
if (jsEnv.isJsDom) {
}
if (jsEnv.isDeno) {
}
if (jsEnv.isBun) {
}
License
MIT © Dinesh Pandiyan