@signumjs/wallets
Version:
Wallets communication package for DApps in the Signum Network
15 lines • 397 B
JavaScript
;
/* globals process */
/** @ignore */
/** @internal */
Object.defineProperty(exports, "__esModule", { value: true });
exports.isNodeJS = isNodeJS;
/**
* Checks if the runtime environment is NodeJS
*/
function isNodeJS() {
return typeof process === 'object'
&& String(process) === '[object process]'
&& !process.versions.nw;
}
//# sourceMappingURL=isNodeJS.js.map