@splitsoftware/splitio-commons
Version:
Split JavaScript SDK common components
7 lines (6 loc) • 314 B
JavaScript
/**
* '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;