mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
fec189f2f3
bundler: - Prevent stack overflow. (denoland/deno#9752) testing: - Bump version - Fix handling of paths on windows. testing_macros: - Bump version - Correctly ignore files.
22 lines
514 B
TypeScript
22 lines
514 B
TypeScript
// Loaded from https://deno.land/std@0.90.0/_util/os.ts
|
|
|
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
export const osType = (() => {
|
|
if (globalThis.Deno != null) {
|
|
return Deno.build.os;
|
|
}
|
|
|
|
// deno-lint-ignore no-explicit-any
|
|
const navigator = (globalThis as any).navigator;
|
|
if (navigator?.appVersion?.includes?.("Win") ?? false) {
|
|
return "windows";
|
|
}
|
|
|
|
return "linux";
|
|
})();
|
|
|
|
export const isWindows = osType === "windows";
|