mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
6a4b12b81c
* [Flight] Add rudimentary FS binding * Throw for unsupported * Don't mess with hidden class * Use absolute path as the key * Warn on relative and non-normalized paths
8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react-fs.node.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react-fs.node.development.js');
|
|
}
|