Skip to content

Commit

Permalink
fix: allow objects with a null prototype in binary packets (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabba90 committed Feb 17, 2022
1 parent 8e8346b commit 7f6b262
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/binary.ts
Expand Up @@ -33,7 +33,7 @@ function _deconstructPacket(data, buffers) {
} else if (typeof data === "object" && !(data instanceof Date)) {
const newData = {};
for (const key in data) {
if (data.hasOwnProperty(key)) {
if (Object.prototype.hasOwnProperty.call(data, key)) {
newData[key] = _deconstructPacket(data[key], buffers);
}
}
Expand Down Expand Up @@ -68,7 +68,7 @@ function _reconstructPacket(data, buffers) {
}
} else if (typeof data === "object") {
for (const key in data) {
if (data.hasOwnProperty(key)) {
if (Object.prototype.hasOwnProperty.call(data, key)) {
data[key] = _reconstructPacket(data[key], buffers);
}
}
Expand Down
15 changes: 15 additions & 0 deletions test/arraybuffer.js
Expand Up @@ -14,6 +14,21 @@ describe("parser", () => {
helpers.test_bin(packet, done);
});

it("encodes an ArrayBuffer into an object with a null prototype", (done) => {
const packet = {
type: PacketType.EVENT,
data: [
"a",
Object.create(null, {
array: { value: new ArrayBuffer(2), enumerable: true },
}),
],
id: 0,
nsp: "/",
};
helpers.test_bin(packet, done);
});

it("encodes a TypedArray", (done) => {
const array = new Uint8Array(5);
for (let i = 0; i < array.length; i++) array[i] = i;
Expand Down

0 comments on commit 7f6b262

Please sign in to comment.