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