@modern-js/utils 2.69.2 → 2.69.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js +8 -9
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.production.js +7 -8
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.edge.development.js +6 -7
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.edge.production.js +7 -8
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.development.js +6 -7
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.production.js +7 -8
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.unbundled.development.js +5 -5
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.unbundled.production.js +6 -6
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.browser.development.js +430 -197
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.browser.production.js +428 -204
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.edge.development.js +431 -198
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.edge.production.js +429 -205
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.node.development.js +474 -227
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.node.production.js +472 -230
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.node.unbundled.development.js +472 -224
- package/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-server.node.unbundled.production.js +470 -227
- package/dist/compiled/react-server-dom-webpack/package.json +5 -5
- package/package.json +2 -2
|
@@ -113,13 +113,11 @@
|
|
|
113
113
|
if ("fulfilled" === moduleExports.status)
|
|
114
114
|
moduleExports = moduleExports.value;
|
|
115
115
|
else throw moduleExports.reason;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
: moduleExports
|
|
122
|
-
: moduleExports[metadata[2]];
|
|
116
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
117
|
+
if ("" === metadata[2])
|
|
118
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
119
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
120
|
+
return moduleExports[metadata[2]];
|
|
123
121
|
}
|
|
124
122
|
function loadChunk(chunkId, filename) {
|
|
125
123
|
chunkMap.set(chunkId, filename);
|
|
@@ -2292,6 +2290,7 @@
|
|
|
2292
2290
|
ReactDOM = require("react-dom"),
|
|
2293
2291
|
decoderOptions = { stream: !0 },
|
|
2294
2292
|
bind = Function.prototype.bind,
|
|
2293
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2295
2294
|
chunkCache = new Map(),
|
|
2296
2295
|
chunkMap = new Map(),
|
|
2297
2296
|
webpackGetChunkFilename = __webpack_require__.u;
|
|
@@ -2465,10 +2464,10 @@
|
|
|
2465
2464
|
return hook.checkDCE ? !0 : !1;
|
|
2466
2465
|
})({
|
|
2467
2466
|
bundleType: 1,
|
|
2468
|
-
version: "19.0.
|
|
2467
|
+
version: "19.0.1",
|
|
2469
2468
|
rendererPackageName: "react-server-dom-webpack",
|
|
2470
2469
|
currentDispatcherRef: ReactSharedInternals,
|
|
2471
|
-
reconcilerVersion: "19.0.
|
|
2470
|
+
reconcilerVersion: "19.0.1",
|
|
2472
2471
|
getCurrentComponentInfo: function () {
|
|
2473
2472
|
return currentOwnerInDEV;
|
|
2474
2473
|
}
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var ReactDOM = require("react-dom"),
|
|
13
|
-
decoderOptions = { stream: !0 }
|
|
13
|
+
decoderOptions = { stream: !0 },
|
|
14
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
14
15
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
15
16
|
if (bundlerConfig) {
|
|
16
17
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
@@ -100,13 +101,11 @@ function requireModule(metadata) {
|
|
|
100
101
|
if ("fulfilled" === moduleExports.status)
|
|
101
102
|
moduleExports = moduleExports.value;
|
|
102
103
|
else throw moduleExports.reason;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
: moduleExports
|
|
109
|
-
: moduleExports[metadata[2]];
|
|
104
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
105
|
+
if ("" === metadata[2])
|
|
106
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
107
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
108
|
+
return moduleExports[metadata[2]];
|
|
110
109
|
}
|
|
111
110
|
var chunkMap = new Map(),
|
|
112
111
|
webpackGetChunkFilename = __webpack_require__.u;
|
|
@@ -113,13 +113,11 @@
|
|
|
113
113
|
if ("fulfilled" === moduleExports.status)
|
|
114
114
|
moduleExports = moduleExports.value;
|
|
115
115
|
else throw moduleExports.reason;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
: moduleExports
|
|
122
|
-
: moduleExports[metadata[2]];
|
|
116
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
117
|
+
if ("" === metadata[2])
|
|
118
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
119
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
120
|
+
return moduleExports[metadata[2]];
|
|
123
121
|
}
|
|
124
122
|
function prepareDestinationWithChunks(
|
|
125
123
|
moduleLoading,
|
|
@@ -2506,6 +2504,7 @@
|
|
|
2506
2504
|
React = require("react"),
|
|
2507
2505
|
decoderOptions = { stream: !0 },
|
|
2508
2506
|
bind$1 = Function.prototype.bind,
|
|
2507
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2509
2508
|
chunkCache = new Map(),
|
|
2510
2509
|
ReactDOMSharedInternals =
|
|
2511
2510
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var ReactDOM = require("react-dom"),
|
|
13
|
-
decoderOptions = { stream: !0 }
|
|
13
|
+
decoderOptions = { stream: !0 },
|
|
14
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
14
15
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
15
16
|
if (bundlerConfig) {
|
|
16
17
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
@@ -99,13 +100,11 @@ function requireModule(metadata) {
|
|
|
99
100
|
if ("fulfilled" === moduleExports.status)
|
|
100
101
|
moduleExports = moduleExports.value;
|
|
101
102
|
else throw moduleExports.reason;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
: moduleExports
|
|
108
|
-
: moduleExports[metadata[2]];
|
|
103
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
104
|
+
if ("" === metadata[2])
|
|
105
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
106
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
107
|
+
return moduleExports[metadata[2]];
|
|
109
108
|
}
|
|
110
109
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
111
110
|
if (null !== moduleLoading)
|
|
@@ -113,13 +113,11 @@
|
|
|
113
113
|
if ("fulfilled" === moduleExports.status)
|
|
114
114
|
moduleExports = moduleExports.value;
|
|
115
115
|
else throw moduleExports.reason;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
: moduleExports
|
|
122
|
-
: moduleExports[metadata[2]];
|
|
116
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
117
|
+
if ("" === metadata[2])
|
|
118
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
119
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
120
|
+
return moduleExports[metadata[2]];
|
|
123
121
|
}
|
|
124
122
|
function prepareDestinationWithChunks(
|
|
125
123
|
moduleLoading,
|
|
@@ -2394,6 +2392,7 @@
|
|
|
2394
2392
|
React = require("react"),
|
|
2395
2393
|
decoderOptions = { stream: !0 },
|
|
2396
2394
|
bind$1 = Function.prototype.bind,
|
|
2395
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2397
2396
|
chunkCache = new Map(),
|
|
2398
2397
|
ReactDOMSharedInternals =
|
|
2399
2398
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var util = require("util"),
|
|
13
13
|
ReactDOM = require("react-dom"),
|
|
14
|
-
decoderOptions = { stream: !0 }
|
|
14
|
+
decoderOptions = { stream: !0 },
|
|
15
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
15
16
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
16
17
|
if (bundlerConfig) {
|
|
17
18
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
@@ -100,13 +101,11 @@ function requireModule(metadata) {
|
|
|
100
101
|
if ("fulfilled" === moduleExports.status)
|
|
101
102
|
moduleExports = moduleExports.value;
|
|
102
103
|
else throw moduleExports.reason;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
: moduleExports
|
|
109
|
-
: moduleExports[metadata[2]];
|
|
104
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
105
|
+
if ("" === metadata[2])
|
|
106
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
107
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
108
|
+
return moduleExports[metadata[2]];
|
|
110
109
|
}
|
|
111
110
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
112
111
|
if (null !== moduleLoading)
|
|
@@ -77,11 +77,10 @@
|
|
|
77
77
|
if ("fulfilled" === moduleExports.status)
|
|
78
78
|
moduleExports = moduleExports.value;
|
|
79
79
|
else throw moduleExports.reason;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
: moduleExports[metadata.name];
|
|
80
|
+
if ("*" === metadata.name) return moduleExports;
|
|
81
|
+
if ("" === metadata.name) return moduleExports.default;
|
|
82
|
+
if (hasOwnProperty.call(moduleExports, metadata.name))
|
|
83
|
+
return moduleExports[metadata.name];
|
|
85
84
|
}
|
|
86
85
|
function prepareDestinationWithChunks(
|
|
87
86
|
moduleLoading,
|
|
@@ -2356,6 +2355,7 @@
|
|
|
2356
2355
|
React = require("react"),
|
|
2357
2356
|
decoderOptions = { stream: !0 },
|
|
2358
2357
|
bind$1 = Function.prototype.bind,
|
|
2358
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2359
2359
|
asyncModuleCache = new Map(),
|
|
2360
2360
|
ReactDOMSharedInternals =
|
|
2361
2361
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var util = require("util"),
|
|
13
13
|
ReactDOM = require("react-dom"),
|
|
14
|
-
decoderOptions = { stream: !0 }
|
|
14
|
+
decoderOptions = { stream: !0 },
|
|
15
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
15
16
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
16
17
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
17
18
|
if ((bundlerConfig = moduleExports && moduleExports[metadata[2]]))
|
|
@@ -67,11 +68,10 @@ function requireModule(metadata) {
|
|
|
67
68
|
var moduleExports = asyncModuleCache.get(metadata.specifier);
|
|
68
69
|
if ("fulfilled" === moduleExports.status) moduleExports = moduleExports.value;
|
|
69
70
|
else throw moduleExports.reason;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
: moduleExports[metadata.name];
|
|
71
|
+
if ("*" === metadata.name) return moduleExports;
|
|
72
|
+
if ("" === metadata.name) return moduleExports.default;
|
|
73
|
+
if (hasOwnProperty.call(moduleExports, metadata.name))
|
|
74
|
+
return moduleExports[metadata.name];
|
|
75
75
|
}
|
|
76
76
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
77
77
|
if (null !== moduleLoading)
|