isNode
Determines if the current runtime environment is Node.js.
- Use the
processglobal object that provides information about the current Node.js process. - Check if
process,process.versionsandprocess.versions.nodeare defined.
const isNode = () =>
typeof process !== 'undefined' &&
!!process.versions &&
!!process.versions.node;isNode(); // true (Node)
isNode(); // false (browser)