We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6744569 commit 0ea4e76Copy full SHA for 0ea4e76
greenlet.js
@@ -59,8 +59,9 @@ export default function greenlet(asyncFunction) {
59
// The filter is to provide a list of transferables to send zero-copy
60
worker.postMessage([currentId, args], args.filter(x => (
61
(x instanceof ArrayBuffer) ||
62
- (x instanceof MessagePort)
+ (x instanceof MessagePort) ||
63
+ (createImageBitmap && x instanceof ImageBitmap)
64
)));
65
});
66
};
-}
67
+}
package.json
@@ -38,7 +38,6 @@
38
"eslint": "^4.16.0",
39
"eslint-config-developit": "^1.1.1",
40
"karmatic": "^1.0.6",
41
- "microbundle": "^0.4.3",
42
- "webpack": "^4.29.6"
+ "microbundle": "^0.4.3"
43
}
44
0 commit comments