All files / path / _os.ts

0.00% Branches 0/1
0.00% Lines 0/5
1
2
3
4
5
6
7
8
9
10
 
 
 
 
 
 
 
 
 
 






I

// deno-lint-ignore-file no-explicit-any
// Copyright 2018-2025 the Deno authors. MIT license.
// This module is browser compatible.

// Check Deno, then the remaining runtimes (e.g. Node, Bun and the browser)
export const isWindows: boolean =
  (globalThis as any).Deno?.build.os === "windows" ||
  (globalThis as any).navigator?.platform?.startsWith("Win") ||
  (globalThis as any).process?.platform?.startsWith("win") ||
  false;