We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707597d commit ef9ad7dCopy full SHA for ef9ad7d
.github/workflows/ci.yml
@@ -12,7 +12,9 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [16]
+ node-version:
16
+ - 16
17
+ - 20
18
19
steps:
20
- name: Checkout repository
test/index.js
@@ -22,6 +22,7 @@ if (typeof ArrayBuffer !== "undefined") {
22
require("./binary-fallback");
23
}
24
25
-if (Blob) {
+// Blob is available in Node.js since v18, but not yet supported by the `engine.io-parser` package
26
+if (Blob && env.browser) {
27
require("./blob");
28
0 commit comments