/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/debugger-shell/src/electron/utils.js
18 строк
506 B
Alex Hunt
Integrate app menu with DevTools features, add icons (#57421)
06 июл 2026, 14:00
06 июл 2026, 14:00
24e3700
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ /** Equivalent of Swift's `if #available(macOS 26, *)`. */ export function isMacOSAtLeast(major: number): boolean { return ( process.platform === 'darwin' && // $FlowFixMe[prop-missing] Number.parseInt(process.getSystemVersion().split('.')[0], 10) >= major ); }