Skip to content

Commit

Permalink
Merge pull request #14985 from chadhietala/leaking-globals
Browse files Browse the repository at this point in the history
[BUGFIX release] Don't leak babel helpers globally
  • Loading branch information
rwjblue authored Mar 7, 2017
2 parents 941193e + 2c4defa commit b8014e1
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 b8014e1

Please sign in to comment.