Skip to content

Commit

Permalink
[Fix] unbreak v3
Browse files Browse the repository at this point in the history
Fixes #66
  • Loading branch information
ljharb authored Sep 24, 2021
1 parent e98985e commit df24982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
var process = global.process
// some kind of non-node environment, just no-op
if (typeof process !== 'object' || !process) {
module.exports = () => {}
module.exports = function () {}
} else {
var assert = require('assert')
var signals = require('./signals.js')
Expand Down

0 comments on commit df24982

Please sign in to comment.