summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_util/os.ts
blob: 49fde7613ce5343f071f3b3a19926b3c47603a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2018-2023 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";