react-native-macos
Version:
[Microsoft Fork] A framework for building native apps using React
43 lines (36 loc) • 980 B
JavaScript
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
// TODO(macOS ISS#2323203) Copied from Platform.ios.js
;
const NativeModules = require('../BatchedBridge/NativeModules');
export type PlatformSelectSpec<D, I> = {
default?: D,
macos?: I,
};
const Platform = {
OS: 'macos',
get Version() {
const constants = NativeModules.PlatformConstants;
return constants && constants.osVersion;
},
get isTesting(): boolean {
if (__DEV__) {
const constants = NativeModules.PlatformConstants;
return constants && constants.isTesting;
}
return false;
},
get isTV() {
return false;
},
select: <D, I>(spec: PlatformSelectSpec<D, I>): D | I =>
'macos' in spec ? spec.macos : spec.default,
};
module.exports = Platform;