react-native/Libraries/Utilities/Platform.ios.js
Mehdi Mulani 81c33b542d Switch out DISABLE_YELLOW_BOX for IS_TESTING
Summary: Switch to using IS_TESTING on the Platform module. While IS_TESTING has to be explicitly set in the test harness, this makes it more usable and stops people from relying on brittle variables in the (larger) environment.

Reviewed By: fkgozali

Differential Revision: D4423661

fbshipit-source-id: 27a80867778b9374bcba67b69f9c93d32c0a74b0
2017-01-18 12:28:42 -08:00

33 lines
888 B
JavaScript

/**
* 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';
const Platform = {
OS: 'ios',
get Version() {
const constants = require('NativeModules').IOSConstants;
return constants ? constants.osVersion : '';
},
get isTVOS() {
const constants = require('NativeModules').IOSConstants;
return constants ? (constants.interfaceIdiom === 'tv') : false;
},
get isTesting(): boolean {
const constants = require('NativeModules').IOSConstants;
return constants && constants.isTesting;
},
select: (obj: Object) => obj.ios,
};
module.exports = Platform;