1 2 3 4 5 6 7 |
x219 x219 |
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { checkWindows } from "./_os.ts";
/** Whether the current platform is Windows */
export const isWindows: boolean = checkWindows();
|