mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
Follow up to #31725. I diffed against the Turbopack one to find any unexpected discrepancies. Some parts are forked enough that it's hard to diff but I think I got most of it.
19 lines
705 B
JavaScript
19 lines
705 B
JavaScript
'use strict';
|
|
|
|
var s;
|
|
if (process.env.NODE_ENV === 'production') {
|
|
s = require('./cjs/react-server-dom-parcel-server.browser.production.js');
|
|
} else {
|
|
s = require('./cjs/react-server-dom-parcel-server.browser.development.js');
|
|
}
|
|
|
|
exports.renderToReadableStream = s.renderToReadableStream;
|
|
exports.decodeReply = s.decodeReply;
|
|
exports.decodeAction = s.decodeAction;
|
|
exports.decodeFormState = s.decodeFormState;
|
|
exports.createClientReference = s.createClientReference;
|
|
exports.registerServerReference = s.registerServerReference;
|
|
exports.createTemporaryReferenceSet = s.createTemporaryReferenceSet;
|
|
exports.registerServerActions = s.registerServerActions;
|
|
exports.loadServerAction = s.loadServerAction;
|