sam522's picture
node
d4b85c0
raw
history blame contribute delete
436 Bytes
// src/index.ts
function isNodeProcess() {
if (typeof navigator !== "undefined" && navigator.product === "ReactNative") {
return true;
}
if (typeof process !== "undefined") {
const type = process.type;
if (type === "renderer" || type === "worker") {
return false;
}
return !!(process.versions && process.versions.node);
}
return false;
}
export {
isNodeProcess
};
//# sourceMappingURL=index.mjs.map