UNPKG

alacritty-theme-switch

Version:
13 lines (12 loc) 533 B
// Copyright 2018-2025 the Deno authors. MIT license. import * as dntShim from "../../../../../_dnt.shims.js"; export function checkWindows() { // deno-lint-ignore no-explicit-any const global = dntShim.dntGlobalThis; const os = global.Deno?.build?.os; // Check Deno, then the remaining runtimes (e.g. Node, Bun and the browser) return typeof os === "string" ? os === "windows" : global.navigator?.platform?.startsWith("Win") ?? global.process?.platform?.startsWith("win") ?? false; }