Skip to content

Commit

Permalink
Prettier 1.2 (#9462)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiebits committed Apr 20, 2017
1 parent 32480a0 commit b1768b5
Show file tree
Hide file tree
Showing 168 changed files with 911 additions and 813 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -72,7 +72,7 @@
"ncp": "^2.0.0",
"object-assign": "^4.1.1",
"platform": "^1.1.0",
"prettier": "^0.22.0",
"prettier": "^1.2.2",
"prop-types": "^15.5.8",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
Expand Down
Expand Up @@ -76,7 +76,8 @@ var invariant = require('invariant');`
});

it('should only add `reactProdInvariant` once', () => {
var expectedInvariantTransformResult = '!condition ? ' +
var expectedInvariantTransformResult =
'!condition ? ' +
"process.env.NODE_ENV !== 'production' ? " +
"invariant(false, 'Do not override existing functions.') : " +
`_prodInvariant('16') : void 0;`;
Expand Down
12 changes: 7 additions & 5 deletions scripts/facts-tracker/index.js
Expand Up @@ -29,8 +29,9 @@ var isCI = !!process.env.TRAVIS_REPO_SLUG;

if (isCI) {
var branch = process.env.TRAVIS_BRANCH || process.env.CIRCLE_BRANCH;
var isPullRequest = (!!process.env.TRAVIS_PULL_REQUEST &&
process.env.TRAVIS_PULL_REQUEST !== 'false') ||
var isPullRequest =
(!!process.env.TRAVIS_PULL_REQUEST &&
process.env.TRAVIS_PULL_REQUEST !== 'false') ||
!!process.env.CI_PULL_REQUEST;

if (branch !== 'master') {
Expand Down Expand Up @@ -117,7 +118,8 @@ function checkoutFactsFolder() {
if (!fs.existsSync(factsFolder)) {
var repoURL;
if (isCI) {
repoURL = 'https://' +
repoURL =
'https://' +
process.env.GITHUB_USER +
'@github.com/' +
repoSlug +
Expand Down Expand Up @@ -165,8 +167,8 @@ for (var i = 2; i < process.argv.length; i += 2) {
} catch (e) {
// ignore error
}
var lastValue = lastLine &&
lastLine.replace(/^[^\t]+\t[^\t]+\t/, '').slice(0, -1); // commit hash \t timestamp \t // trailing \n
var lastValue =
lastLine && lastLine.replace(/^[^\t]+\t[^\t]+\t/, '').slice(0, -1); // commit hash \t timestamp \t // trailing \n

if (value !== lastValue) {
fs.appendFileSync(
Expand Down
3 changes: 2 additions & 1 deletion scripts/jest/preprocessor.js
Expand Up @@ -66,7 +66,8 @@ module.exports = {
return tsPreprocessor.compile(src, filePath);
}
if (
!filePath.match(/\/node_modules\//) && !filePath.match(/\/third_party\//)
!filePath.match(/\/node_modules\//) &&
!filePath.match(/\/third_party\//)
) {
// for test files, we also apply the async-await transform, but we want to
// make sure we don't accidentally apply that transform to product code.
Expand Down
2 changes: 1 addition & 1 deletion scripts/jest/setupSpecEquivalenceReporter.js
Expand Up @@ -18,7 +18,7 @@ global.expect = function() {
return expect.apply(this, arguments);
};

beforeEach(() => numExpectations = 0);
beforeEach(() => (numExpectations = 0));

jasmine.currentEnv_.addReporter({
specDone: spec => {
Expand Down
6 changes: 4 additions & 2 deletions scripts/jest/ts-preprocessor.js
Expand Up @@ -10,11 +10,13 @@ var tsOptions = {
};

function formatErrorMessage(error) {
return error.file.filename +
return (
error.file.filename +
'(' +
error.file.getLineAndCharacterOfPosition(error.start).line +
'): ' +
error.messageText;
error.messageText
);
}

function compile(content, contentFilename) {
Expand Down
7 changes: 4 additions & 3 deletions scripts/rollup/build.js
Expand Up @@ -327,8 +327,8 @@ function createBundle(bundle, bundleType) {
}

const filename = getFilename(bundle.name, bundle.hasteName, bundleType);
const logKey = chalk.white.bold(filename) +
chalk.dim(` (${bundleType.toLowerCase()})`);
const logKey =
chalk.white.bold(filename) + chalk.dim(` (${bundleType.toLowerCase()})`);
const format = getFormat(bundleType);
const packageName = Packaging.getPackageName(bundle.name);

Expand Down Expand Up @@ -362,7 +362,8 @@ function createBundle(bundle, bundleType) {
bundleType,
bundle.hasteName
)
))
)
)
.then(() => Packaging.createNodePackage(bundleType, packageName, filename))
.then(() => {
console.log(`${chalk.bgGreen.black(' COMPLETE ')} ${logKey}\n`);
Expand Down
6 changes: 4 additions & 2 deletions scripts/rollup/packaging.js
Expand Up @@ -126,7 +126,8 @@ function copyNodePackageTemplate(packageName) {
Promise.all([
asyncCopyTo(resolve('./LICENSE'), `${to}/LICENSE`),
asyncCopyTo(resolve('./PATENTS'), `${to}/PATENTS`),
]));
])
);
} else {
return Promise.resolve();
}
Expand All @@ -136,7 +137,8 @@ function createNodePackage(bundleType, packageName, filename) {
// the only case where we don't want to copy the package is for FB bundles
if (bundleType !== FB_DEV && bundleType !== FB_PROD) {
return copyNodePackageTemplate(packageName).then(() =>
copyBundleIntoNodePackage(packageName, filename, bundleType));
copyBundleIntoNodePackage(packageName, filename, bundleType)
);
}
return Promise.resolve();
}
Expand Down
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/EventPluginHub.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.EventPluginHub;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.EventPluginHub;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/EventPluginUtils.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.EventPluginUtils;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.EventPluginUtils;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/EventPropagators.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.EventPropagators;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.EventPropagators;
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactBrowserEventEmitter;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactBrowserEventEmitter;
7 changes: 3 additions & 4 deletions scripts/rollup/shims/facebook-www/ReactChildren.js
Expand Up @@ -11,10 +11,9 @@

'use strict';

const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('React');
const {__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED} = require('React');

// TODO: can't reexport public API because of
// mapIntoWithKeyPrefixInternal() dependency in an addon.
module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactChildren;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactChildren;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactDOMComponentTree.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDOMComponentTree;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDOMComponentTree;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactDOMInputSelection.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDOMInputSelection;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDOMInputSelection;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactDOMSelection.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDOMSelection;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDOMSelection;
6 changes: 1 addition & 5 deletions scripts/rollup/shims/facebook-www/ReactElement.js
Expand Up @@ -10,11 +10,7 @@
*/
'use strict';

const {
createElement,
createFactory,
isValidElement,
} = require('React');
const {createElement, createFactory, isValidElement} = require('React');

module.exports = {
createElement,
Expand Down
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactErrorUtils.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactErrorUtils;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactErrorUtils;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactFiberErrorLogger.js
Expand Up @@ -22,5 +22,6 @@ const ReactFiberErrorLoggerStackShim = {
},
};

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactFiberErrorLogger ||
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactFiberErrorLogger ||
ReactFiberErrorLoggerStackShim;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactInputSelection.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactInputSelection;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactInputSelection;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactInstanceMap.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactInstanceMap;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactInstanceMap;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/ReactPerf.js
Expand Up @@ -34,5 +34,6 @@ const ReactPerfFiberShim = {
getMeasurementsSummaryMap: emptyFunction,
};

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactPerf ||
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactPerf ||
ReactPerfFiberShim;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/SyntheticEvent.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticEvent;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticEvent;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/SyntheticKeyboardEvent.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticKeyboardEvent;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticKeyboardEvent;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/SyntheticMouseEvent.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticMouseEvent;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticMouseEvent;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/SyntheticUIEvent.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticUIEvent;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.SyntheticUIEvent;
4 changes: 1 addition & 3 deletions scripts/rollup/shims/facebook-www/findDOMNode.js
Expand Up @@ -11,8 +11,6 @@

'use strict';

const {
findDOMNode,
} = require('ReactDOM-fb');
const {findDOMNode} = require('ReactDOM-fb');

module.exports = findDOMNode;
7 changes: 3 additions & 4 deletions scripts/rollup/shims/facebook-www/flattenChildren.js
Expand Up @@ -11,8 +11,7 @@

'use strict';

const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('React');
const {__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED} = require('React');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.flattenChildren;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.flattenChildren;
7 changes: 3 additions & 4 deletions scripts/rollup/shims/facebook-www/getComponentName.js
Expand Up @@ -11,8 +11,7 @@

'use strict';

const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('React');
const {__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED} = require('React');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getComponentName;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getComponentName;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/getEventCharCode.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getEventCharCode;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getEventCharCode;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/getEventTarget.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getEventTarget;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getEventTarget;
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getVendorPrefixedEventName;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.getVendorPrefixedEventName;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/isEventSupported.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.isEventSupported;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.isEventSupported;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/setInnerHTML.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.setInnerHTML;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.setInnerHTML;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/facebook-www/setTextContent.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactDOM-fb');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.setTextContent;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.setTextContent;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/react-native/NativeMethodsMixin.js
Expand Up @@ -16,4 +16,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.NativeMethodsMixin;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.NativeMethodsMixin;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/react-native/ReactDebugTool.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDebugTool;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDebugTool;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/react-native/ReactErrorUtils.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactErrorUtils;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactErrorUtils;
Expand Up @@ -16,4 +16,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactNativeComponentTree;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactNativeComponentTree;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/react-native/ReactNativePropRegistry.js
Expand Up @@ -16,4 +16,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactNativePropRegistry;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactNativePropRegistry;
3 changes: 2 additions & 1 deletion scripts/rollup/shims/react-native/TouchHistoryMath.js
Expand Up @@ -15,4 +15,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.TouchHistoryMath;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.TouchHistoryMath;
Expand Up @@ -16,4 +16,5 @@ const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
} = require('ReactNative');

module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.createReactNativeComponentClass;
module.exports =
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.createReactNativeComponentClass;

0 comments on commit b1768b5

Please sign in to comment.