react-server-dom-webpack 19.0.0-rc-d025ddd3-20240722 → 19.0.0-rc-f6cce072-20240723
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/cjs/react-server-dom-webpack-client.browser.development.js +38 -38
- package/cjs/react-server-dom-webpack-client.browser.production.js +14 -14
- package/cjs/react-server-dom-webpack-client.edge.development.js +38 -38
- package/cjs/react-server-dom-webpack-client.edge.production.js +14 -14
- package/cjs/react-server-dom-webpack-client.node.development.js +42 -42
- package/cjs/react-server-dom-webpack-client.node.production.js +18 -18
- package/cjs/react-server-dom-webpack-client.node.unbundled.development.js +38 -38
- package/cjs/react-server-dom-webpack-client.node.unbundled.production.js +14 -14
- package/cjs/react-server-dom-webpack-plugin.js +7 -7
- package/cjs/react-server-dom-webpack-server.browser.development.js +142 -116
- package/cjs/react-server-dom-webpack-server.browser.production.js +56 -56
- package/cjs/react-server-dom-webpack-server.edge.development.js +144 -118
- package/cjs/react-server-dom-webpack-server.edge.production.js +56 -56
- package/cjs/react-server-dom-webpack-server.node.development.js +145 -119
- package/cjs/react-server-dom-webpack-server.node.production.js +56 -56
- package/cjs/react-server-dom-webpack-server.node.unbundled.development.js +141 -115
- package/cjs/react-server-dom-webpack-server.node.unbundled.production.js +52 -52
- package/package.json +3 -3
@@ -84,8 +84,8 @@
|
|
84
84
|
return requireAsyncModule(metadata[0]);
|
85
85
|
})
|
86
86
|
: 0 < promises.length
|
87
|
-
|
88
|
-
|
87
|
+
? Promise.all(promises)
|
88
|
+
: null;
|
89
89
|
}
|
90
90
|
function loadChunk(chunkId, filename) {
|
91
91
|
chunkMap.set(chunkId, filename);
|
@@ -154,8 +154,8 @@
|
|
154
154
|
return value.$$typeof === CLIENT_REFERENCE_TAG
|
155
155
|
? "client"
|
156
156
|
: (value = value.displayName || value.name)
|
157
|
-
|
158
|
-
|
157
|
+
? "function " + value
|
158
|
+
: "function";
|
159
159
|
default:
|
160
160
|
return String(value);
|
161
161
|
}
|
@@ -198,8 +198,8 @@
|
|
198
198
|
"string" === typeof value
|
199
199
|
? value
|
200
200
|
: "object" === typeof value && null !== value
|
201
|
-
|
202
|
-
|
201
|
+
? "{" + describeObjectForErrorMessage(value) + "}"
|
202
|
+
: "{" + describeValueForErrorMessage(value) + "}";
|
203
203
|
"" + i === expandedName
|
204
204
|
? ((start = objKind.length),
|
205
205
|
(length = value.length),
|
@@ -285,9 +285,9 @@
|
|
285
285
|
return void 0 === expandedName
|
286
286
|
? objKind
|
287
287
|
: -1 < start && 0 < length
|
288
|
-
|
289
|
-
|
290
|
-
|
288
|
+
? ((objectOrArray = " ".repeat(start) + "^".repeat(length)),
|
289
|
+
"\n " + objKind + "\n " + objectOrArray)
|
290
|
+
: "\n " + objKind;
|
291
291
|
}
|
292
292
|
function serializeNumber(number) {
|
293
293
|
return Number.isFinite(number)
|
@@ -295,10 +295,10 @@
|
|
295
295
|
? "$-0"
|
296
296
|
: number
|
297
297
|
: Infinity === number
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
298
|
+
? "$Infinity"
|
299
|
+
: -Infinity === number
|
300
|
+
? "$-Infinity"
|
301
|
+
: "$NaN";
|
302
302
|
}
|
303
303
|
function processReply(
|
304
304
|
root,
|
@@ -610,24 +610,24 @@
|
|
610
610
|
describeObjectForErrorMessage(this, key)
|
611
611
|
)
|
612
612
|
: "Object" !== objectName(value)
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
describeObjectForErrorMessage(this, key)
|
617
|
-
)
|
618
|
-
: isSimpleObject(value)
|
619
|
-
? Object.getOwnPropertySymbols &&
|
620
|
-
((parentReference = Object.getOwnPropertySymbols(value)),
|
621
|
-
0 < parentReference.length &&
|
622
|
-
console.error(
|
623
|
-
"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s",
|
624
|
-
parentReference[0].description,
|
613
|
+
? console.error(
|
614
|
+
"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s",
|
615
|
+
objectName(value),
|
625
616
|
describeObjectForErrorMessage(this, key)
|
626
|
-
)
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
617
|
+
)
|
618
|
+
: isSimpleObject(value)
|
619
|
+
? Object.getOwnPropertySymbols &&
|
620
|
+
((parentReference = Object.getOwnPropertySymbols(value)),
|
621
|
+
0 < parentReference.length &&
|
622
|
+
console.error(
|
623
|
+
"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s",
|
624
|
+
parentReference[0].description,
|
625
|
+
describeObjectForErrorMessage(this, key)
|
626
|
+
))
|
627
|
+
: console.error(
|
628
|
+
"Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s",
|
629
|
+
describeObjectForErrorMessage(this, key)
|
630
|
+
);
|
631
631
|
return value;
|
632
632
|
}
|
633
633
|
if ("string" === typeof value) {
|
@@ -912,10 +912,10 @@
|
|
912
912
|
"*" === metadata[2]
|
913
913
|
? moduleExports
|
914
914
|
: "" === metadata[2]
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
915
|
+
? moduleExports.__esModule
|
916
|
+
? moduleExports.default
|
917
|
+
: moduleExports
|
918
|
+
: moduleExports[metadata[2]];
|
919
919
|
chunk.status = "fulfilled";
|
920
920
|
chunk.value = value;
|
921
921
|
} catch (error) {
|
@@ -1908,10 +1908,10 @@
|
|
1908
1908
|
86 === rowState
|
1909
1909
|
? ((rowTag = rowState), (rowState = 2), i++)
|
1910
1910
|
: (64 < rowState && 91 > rowState) ||
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1914
|
-
|
1911
|
+
114 === rowState ||
|
1912
|
+
120 === rowState
|
1913
|
+
? ((rowTag = rowState), (rowState = 3), i++)
|
1914
|
+
: ((rowTag = 0), (rowState = 3));
|
1915
1915
|
continue;
|
1916
1916
|
case 2:
|
1917
1917
|
lastIdx = value[i++];
|
@@ -71,8 +71,8 @@ function preloadModule(metadata) {
|
|
71
71
|
return requireAsyncModule(metadata[0]);
|
72
72
|
})
|
73
73
|
: 0 < promises.length
|
74
|
-
|
75
|
-
|
74
|
+
? Promise.all(promises)
|
75
|
+
: null;
|
76
76
|
}
|
77
77
|
var chunkMap = new Map(),
|
78
78
|
webpackGetChunkFilename = __webpack_require__.u;
|
@@ -105,10 +105,10 @@ function serializeNumber(number) {
|
|
105
105
|
? "$-0"
|
106
106
|
: number
|
107
107
|
: Infinity === number
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
108
|
+
? "$Infinity"
|
109
|
+
: -Infinity === number
|
110
|
+
? "$-Infinity"
|
111
|
+
: "$NaN";
|
112
112
|
}
|
113
113
|
function processReply(
|
114
114
|
root,
|
@@ -636,10 +636,10 @@ function initializeModuleChunk(chunk) {
|
|
636
636
|
"*" === metadata[2]
|
637
637
|
? moduleExports
|
638
638
|
: "" === metadata[2]
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
639
|
+
? moduleExports.__esModule
|
640
|
+
? moduleExports.default
|
641
|
+
: moduleExports
|
642
|
+
: moduleExports[metadata[2]];
|
643
643
|
chunk.status = "fulfilled";
|
644
644
|
chunk.value = JSCompiler_inline_result;
|
645
645
|
} catch (error) {
|
@@ -1400,10 +1400,10 @@ function startReadingFromStream(response, stream) {
|
|
1400
1400
|
86 === rowState
|
1401
1401
|
? ((rowTag = rowState), (rowState = 2), i++)
|
1402
1402
|
: (64 < rowState && 91 > rowState) ||
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1403
|
+
114 === rowState ||
|
1404
|
+
120 === rowState
|
1405
|
+
? ((rowTag = rowState), (rowState = 3), i++)
|
1406
|
+
: ((rowTag = 0), (rowState = 3));
|
1407
1407
|
continue;
|
1408
1408
|
case 2:
|
1409
1409
|
lastIdx = value[i++];
|
@@ -84,8 +84,8 @@
|
|
84
84
|
return requireAsyncModule(metadata[0]);
|
85
85
|
})
|
86
86
|
: 0 < promises.length
|
87
|
-
|
88
|
-
|
87
|
+
? Promise.all(promises)
|
88
|
+
: null;
|
89
89
|
}
|
90
90
|
function prepareDestinationWithChunks(
|
91
91
|
moduleLoading,
|
@@ -175,8 +175,8 @@
|
|
175
175
|
return value.$$typeof === CLIENT_REFERENCE_TAG
|
176
176
|
? "client"
|
177
177
|
: (value = value.displayName || value.name)
|
178
|
-
|
179
|
-
|
178
|
+
? "function " + value
|
179
|
+
: "function";
|
180
180
|
default:
|
181
181
|
return String(value);
|
182
182
|
}
|
@@ -219,8 +219,8 @@
|
|
219
219
|
"string" === typeof value
|
220
220
|
? value
|
221
221
|
: "object" === typeof value && null !== value
|
222
|
-
|
223
|
-
|
222
|
+
? "{" + describeObjectForErrorMessage(value) + "}"
|
223
|
+
: "{" + describeValueForErrorMessage(value) + "}";
|
224
224
|
"" + i === expandedName
|
225
225
|
? ((start = objKind.length),
|
226
226
|
(length = value.length),
|
@@ -306,9 +306,9 @@
|
|
306
306
|
return void 0 === expandedName
|
307
307
|
? objKind
|
308
308
|
: -1 < start && 0 < length
|
309
|
-
|
310
|
-
|
311
|
-
|
309
|
+
? ((objectOrArray = " ".repeat(start) + "^".repeat(length)),
|
310
|
+
"\n " + objKind + "\n " + objectOrArray)
|
311
|
+
: "\n " + objKind;
|
312
312
|
}
|
313
313
|
function serializeNumber(number) {
|
314
314
|
return Number.isFinite(number)
|
@@ -316,10 +316,10 @@
|
|
316
316
|
? "$-0"
|
317
317
|
: number
|
318
318
|
: Infinity === number
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
319
|
+
? "$Infinity"
|
320
|
+
: -Infinity === number
|
321
|
+
? "$-Infinity"
|
322
|
+
: "$NaN";
|
323
323
|
}
|
324
324
|
function processReply(
|
325
325
|
root,
|
@@ -631,24 +631,24 @@
|
|
631
631
|
describeObjectForErrorMessage(this, key)
|
632
632
|
)
|
633
633
|
: "Object" !== objectName(value)
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
describeObjectForErrorMessage(this, key)
|
638
|
-
)
|
639
|
-
: isSimpleObject(value)
|
640
|
-
? Object.getOwnPropertySymbols &&
|
641
|
-
((parentReference = Object.getOwnPropertySymbols(value)),
|
642
|
-
0 < parentReference.length &&
|
643
|
-
console.error(
|
644
|
-
"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s",
|
645
|
-
parentReference[0].description,
|
634
|
+
? console.error(
|
635
|
+
"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s",
|
636
|
+
objectName(value),
|
646
637
|
describeObjectForErrorMessage(this, key)
|
647
|
-
)
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
638
|
+
)
|
639
|
+
: isSimpleObject(value)
|
640
|
+
? Object.getOwnPropertySymbols &&
|
641
|
+
((parentReference = Object.getOwnPropertySymbols(value)),
|
642
|
+
0 < parentReference.length &&
|
643
|
+
console.error(
|
644
|
+
"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s",
|
645
|
+
parentReference[0].description,
|
646
|
+
describeObjectForErrorMessage(this, key)
|
647
|
+
))
|
648
|
+
: console.error(
|
649
|
+
"Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s",
|
650
|
+
describeObjectForErrorMessage(this, key)
|
651
|
+
);
|
652
652
|
return value;
|
653
653
|
}
|
654
654
|
if ("string" === typeof value) {
|
@@ -1083,10 +1083,10 @@
|
|
1083
1083
|
"*" === metadata[2]
|
1084
1084
|
? moduleExports
|
1085
1085
|
: "" === metadata[2]
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1086
|
+
? moduleExports.__esModule
|
1087
|
+
? moduleExports.default
|
1088
|
+
: moduleExports
|
1089
|
+
: moduleExports[metadata[2]];
|
1090
1090
|
chunk.status = "fulfilled";
|
1091
1091
|
chunk.value = value;
|
1092
1092
|
} catch (error) {
|
@@ -2089,10 +2089,10 @@
|
|
2089
2089
|
86 === rowState
|
2090
2090
|
? ((rowTag = rowState), (rowState = 2), i++)
|
2091
2091
|
: (64 < rowState && 91 > rowState) ||
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2092
|
+
114 === rowState ||
|
2093
|
+
120 === rowState
|
2094
|
+
? ((rowTag = rowState), (rowState = 3), i++)
|
2095
|
+
: ((rowTag = 0), (rowState = 3));
|
2096
2096
|
continue;
|
2097
2097
|
case 2:
|
2098
2098
|
lastIdx = value[i++];
|
@@ -70,8 +70,8 @@ function preloadModule(metadata) {
|
|
70
70
|
return requireAsyncModule(metadata[0]);
|
71
71
|
})
|
72
72
|
: 0 < promises.length
|
73
|
-
|
74
|
-
|
73
|
+
? Promise.all(promises)
|
74
|
+
: null;
|
75
75
|
}
|
76
76
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
77
77
|
if (null !== moduleLoading)
|
@@ -117,10 +117,10 @@ function serializeNumber(number) {
|
|
117
117
|
? "$-0"
|
118
118
|
: number
|
119
119
|
: Infinity === number
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
120
|
+
? "$Infinity"
|
121
|
+
: -Infinity === number
|
122
|
+
? "$-Infinity"
|
123
|
+
: "$NaN";
|
124
124
|
}
|
125
125
|
function processReply(
|
126
126
|
root,
|
@@ -790,10 +790,10 @@ function initializeModuleChunk(chunk) {
|
|
790
790
|
"*" === metadata[2]
|
791
791
|
? moduleExports
|
792
792
|
: "" === metadata[2]
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
793
|
+
? moduleExports.__esModule
|
794
|
+
? moduleExports.default
|
795
|
+
: moduleExports
|
796
|
+
: moduleExports[metadata[2]];
|
797
797
|
chunk.status = "fulfilled";
|
798
798
|
chunk.value = JSCompiler_inline_result;
|
799
799
|
} catch (error) {
|
@@ -1564,10 +1564,10 @@ function startReadingFromStream(response, stream) {
|
|
1564
1564
|
86 === rowState
|
1565
1565
|
? ((rowTag = rowState), (rowState = 2), i++)
|
1566
1566
|
: (64 < rowState && 91 > rowState) ||
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1567
|
+
114 === rowState ||
|
1568
|
+
120 === rowState
|
1569
|
+
? ((rowTag = rowState), (rowState = 3), i++)
|
1570
|
+
: ((rowTag = 0), (rowState = 3));
|
1571
1571
|
continue;
|
1572
1572
|
case 2:
|
1573
1573
|
lastIdx = value[i++];
|
@@ -84,8 +84,8 @@
|
|
84
84
|
return requireAsyncModule(metadata[0]);
|
85
85
|
})
|
86
86
|
: 0 < promises.length
|
87
|
-
|
88
|
-
|
87
|
+
? Promise.all(promises)
|
88
|
+
: null;
|
89
89
|
}
|
90
90
|
function prepareDestinationWithChunks(
|
91
91
|
moduleLoading,
|
@@ -175,8 +175,8 @@
|
|
175
175
|
return value.$$typeof === CLIENT_REFERENCE_TAG
|
176
176
|
? "client"
|
177
177
|
: (value = value.displayName || value.name)
|
178
|
-
|
179
|
-
|
178
|
+
? "function " + value
|
179
|
+
: "function";
|
180
180
|
default:
|
181
181
|
return String(value);
|
182
182
|
}
|
@@ -219,8 +219,8 @@
|
|
219
219
|
"string" === typeof value
|
220
220
|
? value
|
221
221
|
: "object" === typeof value && null !== value
|
222
|
-
|
223
|
-
|
222
|
+
? "{" + describeObjectForErrorMessage(value) + "}"
|
223
|
+
: "{" + describeValueForErrorMessage(value) + "}";
|
224
224
|
"" + i === expandedName
|
225
225
|
? ((start = objKind.length),
|
226
226
|
(length = value.length),
|
@@ -306,9 +306,9 @@
|
|
306
306
|
return void 0 === expandedName
|
307
307
|
? objKind
|
308
308
|
: -1 < start && 0 < length
|
309
|
-
|
310
|
-
|
311
|
-
|
309
|
+
? ((objectOrArray = " ".repeat(start) + "^".repeat(length)),
|
310
|
+
"\n " + objKind + "\n " + objectOrArray)
|
311
|
+
: "\n " + objKind;
|
312
312
|
}
|
313
313
|
function serializeNumber(number) {
|
314
314
|
return Number.isFinite(number)
|
@@ -316,10 +316,10 @@
|
|
316
316
|
? "$-0"
|
317
317
|
: number
|
318
318
|
: Infinity === number
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
319
|
+
? "$Infinity"
|
320
|
+
: -Infinity === number
|
321
|
+
? "$-Infinity"
|
322
|
+
: "$NaN";
|
323
323
|
}
|
324
324
|
function processReply(
|
325
325
|
root,
|
@@ -631,24 +631,24 @@
|
|
631
631
|
describeObjectForErrorMessage(this, key)
|
632
632
|
)
|
633
633
|
: "Object" !== objectName(value)
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
describeObjectForErrorMessage(this, key)
|
638
|
-
)
|
639
|
-
: isSimpleObject(value)
|
640
|
-
? Object.getOwnPropertySymbols &&
|
641
|
-
((parentReference = Object.getOwnPropertySymbols(value)),
|
642
|
-
0 < parentReference.length &&
|
643
|
-
console.error(
|
644
|
-
"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s",
|
645
|
-
parentReference[0].description,
|
634
|
+
? console.error(
|
635
|
+
"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s",
|
636
|
+
objectName(value),
|
646
637
|
describeObjectForErrorMessage(this, key)
|
647
|
-
)
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
638
|
+
)
|
639
|
+
: isSimpleObject(value)
|
640
|
+
? Object.getOwnPropertySymbols &&
|
641
|
+
((parentReference = Object.getOwnPropertySymbols(value)),
|
642
|
+
0 < parentReference.length &&
|
643
|
+
console.error(
|
644
|
+
"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s",
|
645
|
+
parentReference[0].description,
|
646
|
+
describeObjectForErrorMessage(this, key)
|
647
|
+
))
|
648
|
+
: console.error(
|
649
|
+
"Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s",
|
650
|
+
describeObjectForErrorMessage(this, key)
|
651
|
+
);
|
652
652
|
return value;
|
653
653
|
}
|
654
654
|
if ("string" === typeof value) {
|
@@ -1083,10 +1083,10 @@
|
|
1083
1083
|
"*" === metadata[2]
|
1084
1084
|
? moduleExports
|
1085
1085
|
: "" === metadata[2]
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1086
|
+
? moduleExports.__esModule
|
1087
|
+
? moduleExports.default
|
1088
|
+
: moduleExports
|
1089
|
+
: moduleExports[metadata[2]];
|
1090
1090
|
chunk.status = "fulfilled";
|
1091
1091
|
chunk.value = value;
|
1092
1092
|
} catch (error) {
|
@@ -2170,10 +2170,10 @@
|
|
2170
2170
|
86 === rowState
|
2171
2171
|
? ((rowTag = rowState), (rowState = 2), i++)
|
2172
2172
|
: (64 < rowState && 91 > rowState) ||
|
2173
|
-
|
2174
|
-
|
2175
|
-
|
2176
|
-
|
2173
|
+
114 === rowState ||
|
2174
|
+
120 === rowState
|
2175
|
+
? ((rowTag = rowState), (rowState = 3), i++)
|
2176
|
+
: ((rowTag = 0), (rowState = 3));
|
2177
2177
|
continue;
|
2178
2178
|
case 2:
|
2179
2179
|
lastIdx = chunk.charCodeAt(i++);
|
@@ -2253,10 +2253,10 @@
|
|
2253
2253
|
86 === chunkLength
|
2254
2254
|
? ((i = chunkLength), (chunkLength = 2), rowLength++)
|
2255
2255
|
: (64 < chunkLength && 91 > chunkLength) ||
|
2256
|
-
|
2257
|
-
|
2258
|
-
|
2259
|
-
|
2256
|
+
114 === chunkLength ||
|
2257
|
+
120 === chunkLength
|
2258
|
+
? ((i = chunkLength), (chunkLength = 3), rowLength++)
|
2259
|
+
: ((i = 0), (chunkLength = 3));
|
2260
2260
|
continue;
|
2261
2261
|
case 2:
|
2262
2262
|
lastIdx = chunk[rowLength++];
|
@@ -71,8 +71,8 @@ function preloadModule(metadata) {
|
|
71
71
|
return requireAsyncModule(metadata[0]);
|
72
72
|
})
|
73
73
|
: 0 < promises.length
|
74
|
-
|
75
|
-
|
74
|
+
? Promise.all(promises)
|
75
|
+
: null;
|
76
76
|
}
|
77
77
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
78
78
|
if (null !== moduleLoading)
|
@@ -118,10 +118,10 @@ function serializeNumber(number) {
|
|
118
118
|
? "$-0"
|
119
119
|
: number
|
120
120
|
: Infinity === number
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
121
|
+
? "$Infinity"
|
122
|
+
: -Infinity === number
|
123
|
+
? "$-Infinity"
|
124
|
+
: "$NaN";
|
125
125
|
}
|
126
126
|
function processReply(
|
127
127
|
root,
|
@@ -791,10 +791,10 @@ function initializeModuleChunk(chunk) {
|
|
791
791
|
"*" === metadata[2]
|
792
792
|
? moduleExports
|
793
793
|
: "" === metadata[2]
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
794
|
+
? moduleExports.__esModule
|
795
|
+
? moduleExports.default
|
796
|
+
: moduleExports
|
797
|
+
: moduleExports[metadata[2]];
|
798
798
|
chunk.status = "fulfilled";
|
799
799
|
chunk.value = JSCompiler_inline_result;
|
800
800
|
} catch (error) {
|
@@ -1561,10 +1561,10 @@ exports.createFromNodeStream = function (stream, ssrManifest, options) {
|
|
1561
1561
|
86 === rowState
|
1562
1562
|
? ((rowTag = rowState), (rowState = 2), i++)
|
1563
1563
|
: (64 < rowState && 91 > rowState) ||
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1564
|
+
114 === rowState ||
|
1565
|
+
120 === rowState
|
1566
|
+
? ((rowTag = rowState), (rowState = 3), i++)
|
1567
|
+
: ((rowTag = 0), (rowState = 3));
|
1568
1568
|
continue;
|
1569
1569
|
case 2:
|
1570
1570
|
lastIdx = chunk.charCodeAt(i++);
|
@@ -1643,10 +1643,10 @@ exports.createFromNodeStream = function (stream, ssrManifest, options) {
|
|
1643
1643
|
86 === chunkLength
|
1644
1644
|
? ((i = chunkLength), (chunkLength = 2), rowLength++)
|
1645
1645
|
: (64 < chunkLength && 91 > chunkLength) ||
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1649
|
-
|
1646
|
+
114 === chunkLength ||
|
1647
|
+
120 === chunkLength
|
1648
|
+
? ((i = chunkLength), (chunkLength = 3), rowLength++)
|
1649
|
+
: ((i = 0), (chunkLength = 3));
|
1650
1650
|
continue;
|
1651
1651
|
case 2:
|
1652
1652
|
lastIdx = chunk[rowLength++];
|