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-06-03 05:42:22 -07:00
|
|
|
var Platform = {
|
2015-01-29 17:10:49 -08:00
|
|
|
OS: 'ios',
|
2016-10-27 04:17:41 -07:00
|
|
|
get Version() {
|
|
|
|
return require('NativeModules').IOSConstants.osVersion;
|
|
|
|
},
|
2016-04-25 16:31:29 -07:00
|
|
|
select: (obj: Object) => obj.ios,
|
2015-01-29 17:10:49 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Platform;
|