UNPKG

detect-node-es

Version:

Detect Node.JS (as opposite to browser environment). ESM modification

3 lines (2 loc) 193 B
// Only Node.JS has a process variable that is of [[Class]] process module.exports.isNode = Object.prototype.toString.call(typeof process !== 'undefined' ? process : 0) === '[object process]';