8000 fix: Stream polyfill returns an empty function · fuse-box/fuse-box@95868e3 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
< 8000 script crossorigin="anonymous" type="application/javascript" src="https://github.githubassets.com/assets/vendors-node_modules_gsap_index_js-028cb2a18f5a.js" defer="defer">
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 95868e3

Browse files
committed
fix: Stream polyfill returns an empty function
fixes #1162

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
if (FuseBox.isServer) {
22
module.exports = global.require("stream");
33
} else {
4-
module.exports = {};
4+
module.exports = function(){};
55
}