react-server-dom-webpack 19.2.0-canary-526dd340-20250602 → 19.2.0-canary-37054867-20250604

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.
@@ -220,6 +220,11 @@
220
220
  ((hasProperties = !0), (trimmed[key] = options[key]));
221
221
  return hasProperties ? trimmed : null;
222
222
  }
223
+ function resolveOwner() {
224
+ if (currentOwner) return currentOwner;
225
+ var owner = componentStorage.getStore();
226
+ return owner ? owner : null;
227
+ }
223
228
  function collectStackTrace(error, structuredStackTrace) {
224
229
  for (
225
230
  var result = [], i = framesToSkip;
@@ -289,43 +294,49 @@
289
294
  return error;
290
295
  }
291
296
  function parseStackTrace(error, skipFrames) {
297
+ var existing = stackTraceCache.get(error);
298
+ if (void 0 !== existing) return existing;
292
299
  collectedStackTrace = null;
293
300
  framesToSkip = skipFrames;
294
- var previousPrepare = Error.prepareStackTrace;
301
+ existing = Error.prepareStackTrace;
295
302
  Error.prepareStackTrace = collectStackTrace;
296
303
  try {
297
304
  var stack = String(error.stack);
298
305
  } finally {
299
- Error.prepareStackTrace = previousPrepare;
306
+ Error.prepareStackTrace = existing;
300
307
  }
301
308
  if (null !== collectedStackTrace)
302
309
  return (
303
310
  (skipFrames = collectedStackTrace),
304
311
  (collectedStackTrace = null),
312
+ stackTraceCache.set(error, skipFrames),
305
313
  skipFrames
306
314
  );
307
315
  stack.startsWith("Error: react-stack-top-frame\n") &&
308
316
  (stack = stack.slice(29));
309
- error = stack.indexOf("react-stack-bottom-frame");
310
- -1 !== error && (error = stack.lastIndexOf("\n", error));
311
- -1 !== error && (stack = stack.slice(0, error));
317
+ existing = stack.indexOf("react-stack-bottom-frame");
318
+ -1 !== existing && (existing = stack.lastIndexOf("\n", existing));
319
+ -1 !== existing && (stack = stack.slice(0, existing));
312
320
  stack = stack.split("\n");
313
- for (error = []; skipFrames < stack.length; skipFrames++)
314
- if ((previousPrepare = frameRegExp.exec(stack[skipFrames]))) {
315
- var name = previousPrepare[1] || "";
321
+ for (existing = []; skipFrames < stack.length; skipFrames++) {
322
+ var parsed = frameRegExp.exec(stack[skipFrames]);
323
+ if (parsed) {
324
+ var name = parsed[1] || "";
316
325
  "<anonymous>" === name && (name = "");
317
- var filename = previousPrepare[2] || previousPrepare[5] || "";
326
+ var filename = parsed[2] || parsed[5] || "";
318
327
  "<anonymous>" === filename && (filename = "");
319
- error.push([
328
+ existing.push([
320
329
  name,
321
330
  filename,
322
- +(previousPrepare[3] || previousPrepare[6]),
323
- +(previousPrepare[4] || previousPrepare[7]),
331
+ +(parsed[3] || parsed[6]),
332
+ +(parsed[4] || parsed[7]),
324
333
  0,
325
334
  0
326
335
  ]);
327
336
  }
328
- return error;
337
+ }
338
+ stackTraceCache.set(error, existing);
339
+ return existing;
329
340
  }
330
341
  function createTemporaryReference(temporaryReferences, id) {
331
342
  var reference = Object.defineProperties(
@@ -416,11 +427,6 @@
416
427
  function unsupportedContext() {
417
428
  throw Error("Cannot read a Client Context from a Server Component.");
418
429
  }
419
- function resolveOwner() {
420
- if (currentOwner) return currentOwner;
421
- var owner = componentStorage.getStore();
422
- return owner ? owner : null;
423
- }
424
430
  function prepareStackTrace(error, structuredStackTrace) {
425
431
  error = (error.name || "Error") + ": " + (error.message || "");
426
432
  for (var i = 0; i < structuredStackTrace.length; i++)
@@ -630,32 +636,25 @@
630
636
  !filename.includes("node_modules")
631
637
  );
632
638
  }
633
- function filterStackTrace(request, error, skipFrames) {
634
- var existing = stackTraceCache.get(error);
635
- if (void 0 !== existing) {
636
- error = existing.slice(0);
637
- for (request = 0; request < error.length; request++)
638
- error[request] = error[request].slice(0);
639
- return error;
640
- }
639
+ function filterStackTrace(request, stack) {
641
640
  request = request.filterStackFrame;
642
- skipFrames = parseStackTrace(error, skipFrames);
643
- for (existing = 0; existing < skipFrames.length; existing++) {
644
- var callsite = skipFrames[existing],
645
- functionName = callsite[0],
646
- url = callsite[1];
641
+ for (var filteredStack = [], i = 0; i < stack.length; i++) {
642
+ var callsite = stack[i],
643
+ functionName = callsite[0];
644
+ var url = callsite[1];
647
645
  if (url.startsWith("rsc://React/")) {
648
646
  var envIdx = url.indexOf("/", 12),
649
647
  suffixIdx = url.lastIndexOf("?");
650
648
  -1 < envIdx &&
651
649
  -1 < suffixIdx &&
652
- (url = callsite[1] = url.slice(envIdx + 1, suffixIdx));
650
+ (url = url.slice(envIdx + 1, suffixIdx));
653
651
  }
654
- request(url, functionName) ||
655
- (skipFrames.splice(existing, 1), existing--);
652
+ request(url, functionName) &&
653
+ ((callsite = callsite.slice(0)),
654
+ (callsite[1] = url),
655
+ filteredStack.push(callsite));
656
656
  }
657
- stackTraceCache.set(error, skipFrames);
658
- return skipFrames;
657
+ return filteredStack;
659
658
  }
660
659
  function patchConsole(consoleInst, methodName) {
661
660
  var descriptor = Object.getOwnPropertyDescriptor(consoleInst, methodName);
@@ -671,8 +670,7 @@
671
670
  if (("assert" !== methodName || !arguments[0]) && null !== request) {
672
671
  var stack = filterStackTrace(
673
672
  request,
674
- Error("react-stack-top-frame"),
675
- 1
673
+ parseStackTrace(Error("react-stack-top-frame"), 1)
676
674
  );
677
675
  request.pendingChunks++;
678
676
  var owner = resolveOwner();
@@ -812,7 +810,7 @@
812
810
  ? defaultFilterStackFrame
813
811
  : filterStackFrame;
814
812
  this.didWarnForKey = null;
815
- type = createTask(this, model, null, !1, abortSet, null, null, null);
813
+ type = createTask(this, model, null, !1, abortSet, 0, null, null, null);
816
814
  pingedTasks.push(type);
817
815
  }
818
816
  function createRequest(
@@ -879,6 +877,7 @@
879
877
  task.keyPath,
880
878
  task.implicitSlot,
881
879
  request.abortableTasks,
880
+ 0,
882
881
  task.debugOwner,
883
882
  task.debugStack,
884
883
  task.debugTask
@@ -980,6 +979,7 @@
980
979
  task.keyPath,
981
980
  task.implicitSlot,
982
981
  request.abortableTasks,
982
+ 0,
983
983
  task.debugOwner,
984
984
  task.debugStack,
985
985
  task.debugTask
@@ -1053,6 +1053,7 @@
1053
1053
  task.keyPath,
1054
1054
  task.implicitSlot,
1055
1055
  request.abortableTasks,
1056
+ 0,
1056
1057
  task.debugOwner,
1057
1058
  task.debugStack,
1058
1059
  task.debugTask
@@ -1116,7 +1117,7 @@
1116
1117
  componentDebugInfo.stack =
1117
1118
  null === task.debugStack
1118
1119
  ? null
1119
- : filterStackTrace(request, task.debugStack, 1);
1120
+ : filterStackTrace(request, parseStackTrace(task.debugStack, 1));
1120
1121
  componentDebugInfo.debugStack = task.debugStack;
1121
1122
  request = componentDebugInfo.debugTask = task.debugTask;
1122
1123
  currentOwner = componentDebugInfo;
@@ -1218,7 +1219,7 @@
1218
1219
  componentDebugInfo.stack =
1219
1220
  null === task.debugStack
1220
1221
  ? null
1221
- : filterStackTrace(request, task.debugStack, 1);
1222
+ : filterStackTrace(request, parseStackTrace(task.debugStack, 1));
1222
1223
  componentDebugInfo.props = props;
1223
1224
  componentDebugInfo.debugStack = task.debugStack;
1224
1225
  componentDebugInfo.debugTask = task.debugTask;
@@ -1362,6 +1363,7 @@
1362
1363
  task.keyPath,
1363
1364
  task.implicitSlot,
1364
1365
  request.abortableTasks,
1366
+ 0,
1365
1367
  task.debugOwner,
1366
1368
  task.debugStack,
1367
1369
  task.debugTask
@@ -1376,6 +1378,7 @@
1376
1378
  task.keyPath,
1377
1379
  task.implicitSlot,
1378
1380
  request.abortableTasks,
1381
+ 0,
1379
1382
  task.debugOwner,
1380
1383
  task.debugStack,
1381
1384
  task.debugTask
@@ -1410,7 +1413,10 @@
1410
1413
  stack:
1411
1414
  null === task.debugStack
1412
1415
  ? null
1413
- : filterStackTrace(request, task.debugStack, 1),
1416
+ : filterStackTrace(
1417
+ request,
1418
+ parseStackTrace(task.debugStack, 1)
1419
+ ),
1414
1420
  props: props,
1415
1421
  debugStack: task.debugStack,
1416
1422
  debugTask: task.debugTask
@@ -1489,7 +1495,7 @@
1489
1495
  task.debugOwner,
1490
1496
  null === task.debugStack
1491
1497
  ? null
1492
- : filterStackTrace(request, task.debugStack, 1),
1498
+ : filterStackTrace(request, parseStackTrace(task.debugStack, 1)),
1493
1499
  validated
1494
1500
  ];
1495
1501
  task = task.implicitSlot && null !== key ? [request] : request;
@@ -1514,19 +1520,20 @@
1514
1520
  keyPath,
1515
1521
  implicitSlot,
1516
1522
  abortSet,
1523
+ lastTimestamp,
1517
1524
  debugOwner,
1518
1525
  debugStack,
1519
1526
  debugTask
1520
1527
  ) {
1521
1528
  request.pendingChunks++;
1522
- var id = request.nextChunkId++;
1529
+ lastTimestamp = request.nextChunkId++;
1523
1530
  "object" !== typeof model ||
1524
1531
  null === model ||
1525
1532
  null !== keyPath ||
1526
1533
  implicitSlot ||
1527
- request.writtenObjects.set(model, serializeByValueID(id));
1534
+ request.writtenObjects.set(model, serializeByValueID(lastTimestamp));
1528
1535
  var task = {
1529
- id: id,
1536
+ id: lastTimestamp,
1530
1537
  status: PENDING$1,
1531
1538
  model: model,
1532
1539
  keyPath: keyPath,
@@ -1659,6 +1666,7 @@
1659
1666
  null,
1660
1667
  !1,
1661
1668
  request.abortableTasks,
1669
+ 0,
1662
1670
  null,
1663
1671
  null,
1664
1672
  null
@@ -1756,6 +1764,7 @@
1756
1764
  null,
1757
1765
  !1,
1758
1766
  request.abortableTasks,
1767
+ 0,
1759
1768
  null,
1760
1769
  null,
1761
1770
  null
@@ -1801,6 +1810,7 @@
1801
1810
  task.keyPath,
1802
1811
  task.implicitSlot,
1803
1812
  request.abortableTasks,
1813
+ 0,
1804
1814
  task.debugOwner,
1805
1815
  task.debugStack,
1806
1816
  task.debugTask
@@ -2171,7 +2181,7 @@
2171
2181
  try {
2172
2182
  name = error.name;
2173
2183
  var message = String(error.message);
2174
- var stack = filterStackTrace(request, error, 0);
2184
+ var stack = filterStackTrace(request, parseStackTrace(error, 0));
2175
2185
  var errorEnv = error.environmentName;
2176
2186
  "string" === typeof errorEnv && (env = errorEnv);
2177
2187
  } catch (x) {
@@ -2196,7 +2206,7 @@
2196
2206
  if (error instanceof Error) {
2197
2207
  name = error.name;
2198
2208
  var message = String(error.message);
2199
- var stack = filterStackTrace(request, error, 0);
2209
+ var stack = filterStackTrace(request, parseStackTrace(error, 0));
2200
2210
  var errorEnv = error.environmentName;
2201
2211
  "string" === typeof errorEnv && (env = errorEnv);
2202
2212
  } else
@@ -2269,6 +2279,30 @@
2269
2279
  );
2270
2280
  }
2271
2281
  }
2282
+ function emitIOInfoChunk(request, id, name, start, end, env, owner, stack) {
2283
+ var objectLimit = 10;
2284
+ stack && (objectLimit += stack.length);
2285
+ var counter = { objectLimit: objectLimit };
2286
+ name = {
2287
+ name: name,
2288
+ start: start - request.timeOrigin,
2289
+ end: end - request.timeOrigin
2290
+ };
2291
+ null != env && (name.env = env);
2292
+ null != stack && (name.stack = stack);
2293
+ null != owner && (name.owner = owner);
2294
+ env = stringify(name, function (parentPropertyName, value) {
2295
+ return renderConsoleValue(
2296
+ request,
2297
+ counter,
2298
+ this,
2299
+ parentPropertyName,
2300
+ value
2301
+ );
2302
+ });
2303
+ id = id.toString(16) + ":J" + env + "\n";
2304
+ request.completedRegularChunks.push(id);
2305
+ }
2272
2306
  function emitTypedArrayChunk(request, id, tag, typedArray) {
2273
2307
  request.pendingChunks++;
2274
2308
  typedArray = new Uint8Array(
@@ -2330,7 +2364,10 @@
2330
2364
  counter = null;
2331
2365
  if (null != value._debugStack)
2332
2366
  for (
2333
- counter = filterStackTrace(request, value._debugStack, 1),
2367
+ counter = filterStackTrace(
2368
+ request,
2369
+ parseStackTrace(value._debugStack, 1)
2370
+ ),
2334
2371
  doNotLimit.add(counter),
2335
2372
  request = 0;
2336
2373
  request < counter.length;
@@ -2540,13 +2577,46 @@
2540
2577
  }
2541
2578
  request.completedRegularChunks.push(":W" + json + "\n");
2542
2579
  }
2543
- function forwardDebugInfo(request, id, debugInfo) {
2580
+ function forwardDebugInfo(request$jscomp$0, id$jscomp$0, debugInfo) {
2544
2581
  for (var i = 0; i < debugInfo.length; i++)
2545
- "number" !== typeof debugInfo[i].time &&
2546
- (request.pendingChunks++,
2547
- "string" === typeof debugInfo[i].name &&
2548
- outlineComponentInfo(request, debugInfo[i]),
2549
- emitDebugChunk(request, id, debugInfo[i]));
2582
+ if ("number" !== typeof debugInfo[i].time)
2583
+ if (
2584
+ (request$jscomp$0.pendingChunks++,
2585
+ "string" === typeof debugInfo[i].name)
2586
+ )
2587
+ outlineComponentInfo(request$jscomp$0, debugInfo[i]),
2588
+ emitDebugChunk(request$jscomp$0, id$jscomp$0, debugInfo[i]);
2589
+ else if (debugInfo[i].awaited) {
2590
+ var ioInfo = debugInfo[i].awaited;
2591
+ var request = request$jscomp$0,
2592
+ ioInfo$jscomp$0 = ioInfo;
2593
+ if (!request.writtenObjects.has(ioInfo$jscomp$0)) {
2594
+ request.pendingChunks++;
2595
+ var id = request.nextChunkId++,
2596
+ owner = ioInfo$jscomp$0.owner;
2597
+ null != owner && outlineComponentInfo(request, owner);
2598
+ emitIOInfoChunk(
2599
+ request,
2600
+ id,
2601
+ ioInfo$jscomp$0.name,
2602
+ ioInfo$jscomp$0.start,
2603
+ ioInfo$jscomp$0.end,
2604
+ ioInfo$jscomp$0.env,
2605
+ owner,
2606
+ ioInfo$jscomp$0.stack
2607
+ );
2608
+ request.writtenObjects.set(
2609
+ ioInfo$jscomp$0,
2610
+ serializeByValueID(id)
2611
+ );
2612
+ }
2613
+ emitDebugChunk(request$jscomp$0, id$jscomp$0, {
2614
+ awaited: ioInfo,
2615
+ env: debugInfo[i].env,
2616
+ owner: debugInfo[i].owner,
2617
+ stack: debugInfo[i].stack
2618
+ });
2619
+ } else emitDebugChunk(request$jscomp$0, id$jscomp$0, debugInfo[i]);
2550
2620
  }
2551
2621
  function emitChunk(request, task, value) {
2552
2622
  var id = task.id;
@@ -3821,11 +3891,13 @@
3821
3891
  }
3822
3892
  }
3823
3893
  };
3824
- var framesToSkip = 0,
3894
+ var currentOwner = null,
3895
+ framesToSkip = 0,
3825
3896
  collectedStackTrace = null,
3826
3897
  identifierRegExp = /^[a-zA-Z_$][0-9a-zA-Z_$]*$/,
3827
3898
  frameRegExp =
3828
3899
  /^ {3} at (?:(.+) \((?:(.+):(\d+):(\d+)|<anonymous>)\)|(?:async )?(.+):(\d+):(\d+)|<anonymous>)$/,
3900
+ stackTraceCache = new WeakMap(),
3829
3901
  requestStorage = new async_hooks.AsyncLocalStorage(),
3830
3902
  componentStorage = new async_hooks.AsyncLocalStorage(),
3831
3903
  TEMPORARY_REFERENCE_TAG = Symbol.for("react.temporary.reference"),
@@ -3936,11 +4008,11 @@
3936
4008
  throw Error("useId can only be used while React is rendering");
3937
4009
  var id = currentRequest$1.identifierCount++;
3938
4010
  return (
3939
- "\u00ab" +
4011
+ "_" +
3940
4012
  currentRequest$1.identifierPrefix +
3941
- "S" +
4013
+ "S_" +
3942
4014
  id.toString(32) +
3943
- "\u00bb"
4015
+ "_"
3944
4016
  );
3945
4017
  },
3946
4018
  useHostTransitionStatus: unsupportedHook,
@@ -3956,7 +4028,6 @@
3956
4028
  return unsupportedRefresh;
3957
4029
  }
3958
4030
  },
3959
- currentOwner = null,
3960
4031
  DefaultAsyncDispatcher = {
3961
4032
  getCacheForType: function (resourceType) {
3962
4033
  var cache = (cache = resolveRequest()) ? cache.cache : new Map();
@@ -4026,8 +4097,7 @@
4026
4097
  jsxPropsParents = new WeakMap(),
4027
4098
  jsxChildrenParents = new WeakMap(),
4028
4099
  CLIENT_REFERENCE_TAG = Symbol.for("react.client.reference"),
4029
- doNotLimit = new WeakSet(),
4030
- stackTraceCache = new WeakMap();
4100
+ doNotLimit = new WeakSet();
4031
4101
  "object" === typeof console &&
4032
4102
  null !== console &&
4033
4103
  (patchConsole(console, "assert"),
@@ -4179,12 +4249,12 @@
4179
4249
  "React doesn't accept base64 encoded file uploads because we don't expect form data passed from a browser to ever encode data that way. If that's the wrong assumption, we can easily fix it."
4180
4250
  );
4181
4251
  pendingFiles++;
4182
- var JSCompiler_object_inline_chunks_156 = [];
4252
+ var JSCompiler_object_inline_chunks_165 = [];
4183
4253
  value.on("data", function (chunk) {
4184
- JSCompiler_object_inline_chunks_156.push(chunk);
4254
+ JSCompiler_object_inline_chunks_165.push(chunk);
4185
4255
  });
4186
4256
  value.on("end", function () {
4187
- var blob = new Blob(JSCompiler_object_inline_chunks_156, {
4257
+ var blob = new Blob(JSCompiler_object_inline_chunks_165, {
4188
4258
  type: mimeType
4189
4259
  });
4190
4260
  response._formData.append(name, blob, filename);
@@ -572,13 +572,7 @@ function useId() {
572
572
  if (null === currentRequest$1)
573
573
  throw Error("useId can only be used while React is rendering");
574
574
  var id = currentRequest$1.identifierCount++;
575
- return (
576
- "\u00ab" +
577
- currentRequest$1.identifierPrefix +
578
- "S" +
579
- id.toString(32) +
580
- "\u00bb"
581
- );
575
+ return "_" + currentRequest$1.identifierPrefix + "S_" + id.toString(32) + "_";
582
576
  }
583
577
  function use(usable) {
584
578
  if (
@@ -860,8 +854,8 @@ function serializeReadableStream(request, task, stream) {
860
854
  tryStreamTask(request, streamTask),
861
855
  enqueueFlush(request),
862
856
  reader.read().then(progress, error);
863
- } catch (x$10) {
864
- error(x$10);
857
+ } catch (x$9) {
858
+ error(x$9);
865
859
  }
866
860
  }
867
861
  function error(reason) {
@@ -934,8 +928,8 @@ function serializeAsyncIterable(request, task, iterable, iterator) {
934
928
  tryStreamTask(request, streamTask),
935
929
  enqueueFlush(request),
936
930
  iterator.next().then(progress, error);
937
- } catch (x$11) {
938
- error(x$11);
931
+ } catch (x$10) {
932
+ error(x$10);
939
933
  }
940
934
  }
941
935
  function error(reason) {
@@ -1955,7 +1949,7 @@ function abort(request, reason) {
1955
1949
  }
1956
1950
  var abortListeners = request.abortListeners;
1957
1951
  if (0 < abortListeners.size) {
1958
- var error$25 =
1952
+ var error$24 =
1959
1953
  void 0 === reason
1960
1954
  ? Error("The render was aborted by the server without a reason.")
1961
1955
  : "object" === typeof reason &&
@@ -1964,15 +1958,15 @@ function abort(request, reason) {
1964
1958
  ? Error("The render was aborted by the server with a promise.")
1965
1959
  : reason;
1966
1960
  abortListeners.forEach(function (callback) {
1967
- return callback(error$25);
1961
+ return callback(error$24);
1968
1962
  });
1969
1963
  abortListeners.clear();
1970
1964
  callOnAllReadyIfReady(request);
1971
1965
  }
1972
1966
  null !== request.destination &&
1973
1967
  flushCompletedChunks(request, request.destination);
1974
- } catch (error$26) {
1975
- logRecoverableError(request, error$26, null), fatalError(request, error$26);
1968
+ } catch (error$25) {
1969
+ logRecoverableError(request, error$25, null), fatalError(request, error$25);
1976
1970
  }
1977
1971
  }
1978
1972
  function resolveServerReference(bundlerConfig, id) {
@@ -2421,8 +2415,8 @@ function parseReadableStream(response, reference, type) {
2421
2415
  (previousBlockedChunk = chunk));
2422
2416
  } else {
2423
2417
  chunk = previousBlockedChunk;
2424
- var chunk$29 = createPendingChunk(response);
2425
- chunk$29.then(
2418
+ var chunk$28 = createPendingChunk(response);
2419
+ chunk$28.then(
2426
2420
  function (v) {
2427
2421
  return controller.enqueue(v);
2428
2422
  },
@@ -2430,10 +2424,10 @@ function parseReadableStream(response, reference, type) {
2430
2424
  return controller.error(e);
2431
2425
  }
2432
2426
  );
2433
- previousBlockedChunk = chunk$29;
2427
+ previousBlockedChunk = chunk$28;
2434
2428
  chunk.then(function () {
2435
- previousBlockedChunk === chunk$29 && (previousBlockedChunk = null);
2436
- resolveModelChunk(chunk$29, json, -1);
2429
+ previousBlockedChunk === chunk$28 && (previousBlockedChunk = null);
2430
+ resolveModelChunk(chunk$28, json, -1);
2437
2431
  });
2438
2432
  }
2439
2433
  },
@@ -2806,12 +2800,12 @@ exports.decodeReplyFromBusboy = function (busboyStream, webpackMap, options) {
2806
2800
  "React doesn't accept base64 encoded file uploads because we don't expect form data passed from a browser to ever encode data that way. If that's the wrong assumption, we can easily fix it."
2807
2801
  );
2808
2802
  pendingFiles++;
2809
- var JSCompiler_object_inline_chunks_233 = [];
2803
+ var JSCompiler_object_inline_chunks_244 = [];
2810
2804
  value.on("data", function (chunk) {
2811
- JSCompiler_object_inline_chunks_233.push(chunk);
2805
+ JSCompiler_object_inline_chunks_244.push(chunk);
2812
2806
  });
2813
2807
  value.on("end", function () {
2814
- var blob = new Blob(JSCompiler_object_inline_chunks_233, {
2808
+ var blob = new Blob(JSCompiler_object_inline_chunks_244, {
2815
2809
  type: mimeType
2816
2810
  });
2817
2811
  response._formData.append(name, blob, filename);