/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/node/polyfills/_util/os.ts
23 строки
524 B
Nathan Whitaker
perf: lazy-load more modules in the snapshot (#34061)
19 май 2026, 02:37
Не верифицирован
19 май 2026, 02:37
eb4061f
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. (function () { const { core } = __bootstrap; const { op_node_build_os } = core.ops; type OSType = | "windows" | "linux" | "android" | "darwin" | "freebsd" | "openbsd"; const osType: OSType = op_node_build_os(); const isAndroid = osType === "android"; const isWindows = osType === "windows"; const isLinux = osType === "linux" || osType === "android"; const isMacOS = osType === "darwin"; return { osType, isAndroid, isWindows, isLinux, isMacOS }; })();