single-file-cli 2.0.76 → 2.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -125,9 +125,11 @@ const pathAPI = {
125
125
  SEPARATOR: DENO_RUNTIME_DETECTED ? path.SEPARATOR : path.sep
126
126
  };
127
127
 
128
+ const isDeno = DENO_RUNTIME_DETECTED;
129
+
128
130
  await initGlobalThisProperties();
129
131
 
130
- export { DenoAPI as Deno, pathAPI as path };
132
+ export { DenoAPI as Deno, pathAPI as path, isDeno };
131
133
 
132
134
  async function initGlobalThisProperties() {
133
135
  if (!DENO_RUNTIME_DETECTED) {