Mission Control Dashboard - Initial implementation

This commit is contained in:
Daniel Arroyo
2026-03-27 18:36:05 +00:00
parent 257cea2c7d
commit a8fb4d4555
12516 changed files with 2307128 additions and 2 deletions
+2
View File
@@ -0,0 +1,2 @@
module.exports.isNode = false;
+4
View File
@@ -0,0 +1,4 @@
/**
* returns true if the current environment is NodeJS
*/
export declare const isNode: boolean;
+2
View File
@@ -0,0 +1,2 @@
// 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]';