blob: a3cb396bda8da24d6a2d4d47e3c38ac5c53bc20f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
const { ops } = globalThis.__bootstrap.core;
export type OSType = "windows" | "linux" | "darwin" | "freebsd";
export const osType: OSType = ops.op_node_build_os();
export const isWindows = osType === "windows";
export const isLinux = osType === "linux";
|