Update npm packages (73 packages including @jqhtml 2.3.36)
Update npm registry domain from privatenpm.hanson.xyz to npm.internal.hanson.xyz 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
4
node_modules/webpack/lib/serialization/BinaryMiddleware.js
generated
vendored
4
node_modules/webpack/lib/serialization/BinaryMiddleware.js
generated
vendored
@@ -313,6 +313,7 @@ class BinaryMiddleware extends SerializerMiddleware {
|
||||
/** @type {number[]} */
|
||||
const lengths = [];
|
||||
for (const item of serializedData) {
|
||||
/** @type {undefined | number} */
|
||||
let last;
|
||||
if (typeof item === "function") {
|
||||
lengths.push(0);
|
||||
@@ -490,8 +491,10 @@ class BinaryMiddleware extends SerializerMiddleware {
|
||||
}
|
||||
case "boolean": {
|
||||
let lastByte = thing === true ? 1 : 0;
|
||||
/** @type {number[]} */
|
||||
const bytes = [];
|
||||
let count = 1;
|
||||
/** @type {undefined | number} */
|
||||
let n;
|
||||
for (n = 1; n < 0xffffffff && i + n < data.length; n++) {
|
||||
const item = data[i + n];
|
||||
@@ -541,6 +544,7 @@ class BinaryMiddleware extends SerializerMiddleware {
|
||||
}
|
||||
case "object": {
|
||||
if (thing === null) {
|
||||
/** @type {number} */
|
||||
let n;
|
||||
for (n = 1; n < 0x100000104 && i + n < data.length; n++) {
|
||||
const item = data[i + n];
|
||||
|
||||
Reference in New Issue
Block a user