2015-09-14 14:35:58 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule Platform
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-02-22 22:54:11 +00:00
|
|
|
const NativeModules = require('NativeModules');
|
|
|
|
|
2016-12-19 14:26:07 +00:00
|
|
|
const Platform = {
|
2015-09-14 14:35:58 +00:00
|
|
|
OS: 'android',
|
2016-10-27 11:17:41 +00:00
|
|
|
get Version() {
|
2017-02-22 22:54:11 +00:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants && constants.Version;
|
2016-10-27 11:17:41 +00:00
|
|
|
},
|
2017-01-19 22:18:31 +00:00
|
|
|
get isTesting(): boolean {
|
2017-02-22 22:54:11 +00:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
2017-01-19 22:18:31 +00:00
|
|
|
return constants && constants.isTesting;
|
|
|
|
},
|
2017-02-07 12:26:45 +00:00
|
|
|
select: (obj: Object) => 'android' in obj ? obj.android : obj.default,
|
2015-09-14 14:35:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Platform;
|