Skip to content

Commit a12a59b

Browse files
authored
fix: process-browser.js
Fix browser bundling of the `process-browser.js` since it used as `require('process').versions` so the module itself is exported and not `process` as a key
1 parent ff16fc2 commit a12a59b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/process-browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"use strict";
77

8-
exports.process = {
8+
moudle.exports = {
99
versions: {},
1010
nextTick(fn) {
1111
const args = Array.prototype.slice.call(arguments, 1);

0 commit comments

Comments
 (0)