Skip to content

Commit

Permalink
Use var over let in bundle loader built-in (#136)
Browse files Browse the repository at this point in the history
related to #131
  • Loading branch information
chee authored and devongovett committed Dec 9, 2017
1 parent f758994 commit 29515f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builtins/bundle-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function loadCSSBundle(bundle) {
}

function requireModule(id) {
let res = require(id);
var res = require(id);
if (res.__esModule) {
return res.default;
}
Expand Down

0 comments on commit 29515f4

Please sign in to comment.