Icard/angular-clarity-master(work.../node_modules/stream-browserify/test/use-stream.js

5 lines
216 B
JavaScript
Raw Normal View History

2024-07-16 15:23:22 +00:00
// browserify plugin to swap out the `stream` builtin node shim with the stream-browserify version in this repo.
module.exports = function (b) {
b._mdeps.options.modules.stream = require.resolve('../index.js');
};