babel-source 4.5.0 → 4.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/babel.js +2418 -2766
- data/lib/babel/external-helpers.js +2 -2
- data/lib/babel/polyfill.js +0 -1
- data/lib/babel/source.rb +2 -2
- metadata +1 -1
@@ -57,7 +57,7 @@
|
|
57
57
|
};
|
58
58
|
|
59
59
|
babelHelpers.interopRequire = function (obj) {
|
60
|
-
return obj && obj.__esModule ? obj
|
60
|
+
return obj && obj.__esModule ? obj["default"] : obj;
|
61
61
|
};
|
62
62
|
|
63
63
|
babelHelpers.toArray = function (arr) {
|
@@ -147,7 +147,7 @@
|
|
147
147
|
|
148
148
|
babelHelpers.interopRequireWildcard = function (obj) {
|
149
149
|
return obj && obj.__esModule ? obj : {
|
150
|
-
default: obj
|
150
|
+
"default": obj
|
151
151
|
};
|
152
152
|
};
|
153
153
|
|
data/lib/babel/polyfill.js
CHANGED
@@ -9,7 +9,6 @@ global._babelPolyfill = true;
|
|
9
9
|
|
10
10
|
require("core-js/shim");
|
11
11
|
require("regenerator-babel/runtime");
|
12
|
-
|
13
12
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
14
13
|
},{"core-js/shim":2,"regenerator-babel/runtime":3}],2:[function(require,module,exports){
|
15
14
|
/**
|
data/lib/babel/source.rb
CHANGED