2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2015-03-23 15:07:33 -07: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
|
2015-03-24 09:26:16 -07:00
|
|
|
* @flow
|
2015-03-23 15:07:33 -07:00
|
|
|
*/
|
2015-01-29 17:10:49 -08:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2016-12-19 06:26:07 -08:00
|
|
|
const Platform = {
|
2015-01-29 17:10:49 -08:00
|
|
|
OS: 'ios',
|
2016-10-27 04:17:41 -07:00
|
|
|
get Version() {
|
2016-12-19 06:26:07 -08:00
|
|
|
const constants = require('NativeModules').IOSConstants;
|
|
|
|
return constants ? constants.osVersion : '';
|
|
|
|
},
|
|
|
|
get isTVOS() {
|
|
|
|
const constants = require('NativeModules').IOSConstants;
|
|
|
|
return constants ? (constants.interfaceIdiom === 'tv') : false;
|
2016-10-27 04:17:41 -07:00
|
|
|
},
|
2016-04-25 16:31:29 -07:00
|
|
|
select: (obj: Object) => obj.ios,
|
2015-01-29 17:10:49 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Platform;
|