[Flow] Fix or suppress errors in react-native for Flow v0.13.0

This commit is contained in:
Gabe Levi
2015-06-22 09:43:30 -07:00
parent fccea2f365
commit 972b546fc6
12 changed files with 15 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ var AppRegistry = {
console.log(
'Running application "' + appKey + '" with appParams: ' +
JSON.stringify(appParameters) + '. ' +
'__DEV__ === ' + __DEV__ +
'__DEV__ === ' + String(__DEV__) +
', development-level warning are ' + (__DEV__ ? 'ON' : 'OFF') +
', performance optimizations are ' + (__DEV__ ? 'OFF' : 'ON')
);