blob: ff5e2efd54225ce65819b44412a2ee67badb542a (
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" | "openbsd";
export const osType: OSType = ops.op_node_build_os();
export const isWindows = osType === "windows";
export const isLinux = osType === "linux";
|