UNPKG

@splitsoftware/splitio-commons

Version:
7 lines (6 loc) 314 B
/** * 'true' if running in Node.js, or 'false' otherwise. * We check for version truthiness since most shims will have that as empty string. */ // eslint-disable-next-line no-undef export var isNode = typeof process !== 'undefined' && typeof process.version !== 'undefined' && !!process.version ? true : false;