We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db2a828 commit 7c5f2c2Copy full SHA for 7c5f2c2
test/whatwg-streams.test.ts
@@ -4,7 +4,7 @@ import { decodeAsync, encode, decodeArrayStream } from "@msgpack/msgpack";
4
describe("whatwg streams", () => {
5
before(function() {
6
// Edge <= 18 has no ReadableStream constructor
7
- if (typeof ReadableStream === "function") {
+ if (typeof ReadableStream !== "function") {
8
this.skip();
9
}
10
});
0 commit comments