deno.ts 239 B

1234
  1. // Ignore the TypeScript errors
  2. // Since this file will only be used in Deno runtime
  3. export const processArgs = ['deno', 'cli'].concat(Deno.args);
  4. export const platformInfo = `${Deno.build.os}-${Deno.build.arch} deno-${Deno.version.deno}`;