Skip to content

Commit

Permalink
fix arrow-IIFE
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed May 2, 2016
1 parent caf7062 commit d3e4413
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
module.exports = () => {
module.exports = (() => {
const env = process.env;

if (process.platform === 'darwin') {
Expand All @@ -11,4 +11,4 @@ module.exports = () => {
}

return env.SHELL || '/bin/sh';
}();
})();

0 comments on commit d3e4413

Please sign in to comment.