UNPKG

abi.js

Version:

[![typescript-icon]][typescript-link] [![license-icon]][license-link] [![status-icon]][status-link] [![ci-icon]][ci-link] [![twitter-icon]][twitter-link]

18 lines (17 loc) 668 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. // Keep this up-to-date with Deno.build.os /** * Operating system type, equivalent to the type of * {@linkcode https://deno.land/api?s=Deno.build | Deno.build.os}. */ import * as dntShim from "../../../../../_dnt.shims.js"; function getOsType() { // deno-lint-ignore no-explicit-any return dntShim.dntGlobalThis.Deno?.build.os || // deno-lint-ignore no-explicit-any (dntShim.dntGlobalThis.navigator?.userAgent.includes("Win") ? "windows" : "linux"); } export const isWindows = getOsType() === "windows";