Skip to content

Commit

Permalink
[BUGFIX release] Don't leak babel helpers globally
Browse files Browse the repository at this point in the history
  • Loading branch information
chadhietala committed Mar 7, 2017
1 parent e994e80 commit 2c4defa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/external-helpers/lib/external-helpers-dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function defaults(obj, defaults) {
return obj;
}

babelHelpers = {
var babelHelpers = {
classCallCheck: classCallCheck,
inherits: inherits,
taggedTemplateLiteralLoose: taggedTemplateLiteralLoose,
Expand Down
2 changes: 1 addition & 1 deletion packages/external-helpers/lib/external-helpers-prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function defaults(obj, defaults) {
return obj;
}

babelHelpers = {
var babelHelpers = {
inherits: inherits,
taggedTemplateLiteralLoose: taggedTemplateLiteralLoose,
slice: Array.prototype.slice,
Expand Down

0 comments on commit 2c4defa

Please sign in to comment.