blob: 2c01d5c6ec3d0dca0fc65843a401a5ffcf199365 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core } from "ext:core/mod.js";
const ops = core.ops;
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";
|