Scoped: update experimental/codemods to @babel/ [skip ci]

This commit is contained in:
Henry Zhu 2017-10-16 14:54:02 -04:00
parent 691f90a774
commit 70080063a4
56 changed files with 683 additions and 683 deletions

View File

@ -50,7 +50,7 @@ babel --plugins codemod-optional-catch-binding script.js
### Via Node API ### Via Node API
```javascript ```javascript
require("babel-core").transform("code", { require("@babel/core").transform("code", {
plugins: ["codemod-optional-catch-binding"] plugins: ["codemod-optional-catch-binding"]
}); });
``` ```

View File

@ -1,5 +1,5 @@
{ {
"name": "babel-plugin-codemod-optional-catch-binding", "name" : "@babel/plugin-codemod-optional-catch-binding",
"version": "7.0.0-beta.3", "version": "7.0.0-beta.3",
"description": "Remove unused catch bindings", "description": "Remove unused catch bindings",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-remove-unused-catch-binding", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-remove-unused-catch-binding",
@ -9,9 +9,9 @@
"babel-plugin" "babel-plugin"
], ],
"dependencies": { "dependencies": {
"babel-plugin-syntax-optional-catch-binding": "7.0.0-beta.3" "@babel/plugin-syntax-optional-catch-binding": "7.0.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"babel-helper-plugin-test-runner": "7.0.0-beta.3" "@babel/helper-plugin-test-runner": "7.0.0-beta.3"
} }
} }

View File

@ -1,4 +1,4 @@
import syntaxOptionalCatchBinding from "babel-plugin-syntax-optional-catch-binding"; import syntaxOptionalCatchBinding from "@babel/plugin-syntax-optional-catch-binding";
export default function(babel) { export default function(babel) {
const { types: t } = babel; const { types: t } = babel;

View File

@ -1,3 +1,3 @@
import runner from "babel-helper-plugin-test-runner"; import runner from "@babel/helper-plugin-test-runner";
runner(__dirname); runner(__dirname);

View File

@ -286,12 +286,12 @@ var b = new Map();
**Out (if environment doesn't support it)** **Out (if environment doesn't support it)**
```js ```js
import "babel-polyfill/core-js/modules/es6.promise"; import "@babel/polyfill/core-js/modules/es6.promise";
var a = new Promise(); var a = new Promise();
``` ```
```js ```js
import "babel-polyfill/core-js/modules/es6.map"; import "@babel/polyfill/core-js/modules/es6.map";
var b = new Map(); var b = new Map();
``` ```
@ -307,28 +307,28 @@ var b = new Map();
#### `useBuiltIns: 'entry'` #### `useBuiltIns: 'entry'`
> NOTE: Only use `require("babel-polyfill");` once in your whole app. > NOTE: Only use `require("@babel/polyfill");` once in your whole app.
> Multiple imports or requires of `babel-polyfill` will throw an error since it can cause global collisions and other issues that are hard to trace. > Multiple imports or requires of `babel-polyfill` will throw an error since it can cause global collisions and other issues that are hard to trace.
> We recommend creating a single entry file that only contains the `require` statement. > We recommend creating a single entry file that only contains the `require` statement.
This option enables a new plugin that replaces the statement `import "babel-polyfill"` or `require("babel-polyfill")` with individual requires for `babel-polyfill` based on environment. This option enables a new plugin that replaces the statement `import "@babel/polyfill"` or `require("@babel/polyfill")` with individual requires for `babel-polyfill` based on environment.
**In** **In**
```js ```js
import "babel-polyfill"; import "@babel/polyfill";
``` ```
**Out (different based on environment)** **Out (different based on environment)**
```js ```js
import "babel-polyfill/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/core-js/modules/es7.string.pad-start";
import "babel-polyfill/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/core-js/modules/es7.string.pad-end";
``` ```
#### `useBuiltIns: false` #### `useBuiltIns: false`
Don't add polyfills automatically per file, or transform `import "babel-polyfill"` to individual polyfills. Don't add polyfills automatically per file, or transform `import "@babel/polyfill"` to individual polyfills.
### `forceAllTransforms` ### `forceAllTransforms`

View File

@ -1,5 +1,5 @@
{ {
"name": "babel-preset-env", "name" : "@babel/preset-env",
"version": "7.0.0-beta.3", "version": "7.0.0-beta.3",
"description": "A Babel preset for each environment.", "description": "A Babel preset for each environment.",
"author": "Henry Zhu <hi@henryzoo.com>", "author": "Henry Zhu <hi@henryzoo.com>",
@ -11,49 +11,49 @@
"build-data": "node ./scripts/build-data.js" "build-data": "node ./scripts/build-data.js"
}, },
"dependencies": { "dependencies": {
"babel-plugin-check-es2015-constants": "7.0.0-beta.3", "@babel/plugin-check-es2015-constants": "7.0.0-beta.3",
"babel-plugin-syntax-async-generators": "7.0.0-beta.3", "@babel/plugin-syntax-async-generators": "7.0.0-beta.3",
"babel-plugin-syntax-object-rest-spread": "7.0.0-beta.3", "@babel/plugin-syntax-object-rest-spread": "7.0.0-beta.3",
"babel-plugin-syntax-optional-catch-binding": "7.0.0-beta.3", "@babel/plugin-syntax-optional-catch-binding": "7.0.0-beta.3",
"babel-plugin-syntax-trailing-function-commas": "7.0.0-beta.0", "@babel/plugin-syntax-trailing-function-commas": "7.0.0-beta.0",
"babel-plugin-transform-async-generator-functions": "7.0.0-beta.3", "@babel/plugin-transform-async-generator-functions": "7.0.0-beta.3",
"babel-plugin-transform-async-to-generator": "7.0.0-beta.3", "@babel/plugin-transform-async-to-generator": "7.0.0-beta.3",
"babel-plugin-transform-es2015-arrow-functions": "7.0.0-beta.3", "@babel/plugin-transform-es2015-arrow-functions": "7.0.0-beta.3",
"babel-plugin-transform-es2015-block-scoped-functions": "7.0.0-beta.3", "@babel/plugin-transform-es2015-block-scoped-functions": "7.0.0-beta.3",
"babel-plugin-transform-es2015-block-scoping": "7.0.0-beta.3", "@babel/plugin-transform-es2015-block-scoping": "7.0.0-beta.3",
"babel-plugin-transform-es2015-classes": "7.0.0-beta.3", "@babel/plugin-transform-es2015-classes": "7.0.0-beta.3",
"babel-plugin-transform-es2015-computed-properties": "7.0.0-beta.3", "@babel/plugin-transform-es2015-computed-properties": "7.0.0-beta.3",
"babel-plugin-transform-es2015-destructuring": "7.0.0-beta.3", "@babel/plugin-transform-es2015-destructuring": "7.0.0-beta.3",
"babel-plugin-transform-es2015-duplicate-keys": "7.0.0-beta.3", "@babel/plugin-transform-es2015-duplicate-keys": "7.0.0-beta.3",
"babel-plugin-transform-es2015-for-of": "7.0.0-beta.3", "@babel/plugin-transform-es2015-for-of": "7.0.0-beta.3",
"babel-plugin-transform-es2015-function-name": "7.0.0-beta.3", "@babel/plugin-transform-es2015-function-name": "7.0.0-beta.3",
"babel-plugin-transform-es2015-literals": "7.0.0-beta.3", "@babel/plugin-transform-es2015-literals": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-amd": "7.0.0-beta.3", "@babel/plugin-transform-es2015-modules-amd": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-commonjs": "7.0.0-beta.3", "@babel/plugin-transform-es2015-modules-commonjs": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-systemjs": "7.0.0-beta.3", "@babel/plugin-transform-es2015-modules-systemjs": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-umd": "7.0.0-beta.3", "@babel/plugin-transform-es2015-modules-umd": "7.0.0-beta.3",
"babel-plugin-transform-es2015-object-super": "7.0.0-beta.3", "@babel/plugin-transform-es2015-object-super": "7.0.0-beta.3",
"babel-plugin-transform-es2015-parameters": "7.0.0-beta.3", "@babel/plugin-transform-es2015-parameters": "7.0.0-beta.3",
"babel-plugin-transform-es2015-shorthand-properties": "7.0.0-beta.3", "@babel/plugin-transform-es2015-shorthand-properties": "7.0.0-beta.3",
"babel-plugin-transform-es2015-spread": "7.0.0-beta.3", "@babel/plugin-transform-es2015-spread": "7.0.0-beta.3",
"babel-plugin-transform-es2015-sticky-regex": "7.0.0-beta.3", "@babel/plugin-transform-es2015-sticky-regex": "7.0.0-beta.3",
"babel-plugin-transform-es2015-template-literals": "7.0.0-beta.3", "@babel/plugin-transform-es2015-template-literals": "7.0.0-beta.3",
"babel-plugin-transform-es2015-typeof-symbol": "7.0.0-beta.3", "@babel/plugin-transform-es2015-typeof-symbol": "7.0.0-beta.3",
"babel-plugin-transform-es2015-unicode-regex": "7.0.0-beta.3", "@babel/plugin-transform-es2015-unicode-regex": "7.0.0-beta.3",
"babel-plugin-transform-exponentiation-operator": "7.0.0-beta.3", "@babel/plugin-transform-exponentiation-operator": "7.0.0-beta.3",
"babel-plugin-transform-new-target": "7.0.0-beta.3", "@babel/plugin-transform-new-target": "7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3", "@babel/plugin-transform-object-rest-spread": "7.0.0-beta.3",
"babel-plugin-transform-optional-catch-binding": "7.0.0-beta.3", "@babel/plugin-transform-optional-catch-binding": "7.0.0-beta.3",
"babel-plugin-transform-regenerator": "7.0.0-beta.3", "@babel/plugin-transform-regenerator": "7.0.0-beta.3",
"babel-plugin-transform-unicode-property-regex": "^2.0.5", "babel-plugin-transform-unicode-property-regex": "^2.0.5",
"browserslist": "^2.4.0", "browserslist": "^2.4.0",
"invariant": "^2.2.2", "invariant": "^2.2.2",
"semver": "^5.3.0" "semver": "^5.3.0"
}, },
"devDependencies": { "devDependencies": {
"babel-cli": "7.0.0-beta.3", "@babel/cli": "7.0.0-beta.3",
"babel-helper-fixtures": "7.0.0-beta.3", "@babel/helper-fixtures": "7.0.0-beta.3",
"babel-helper-plugin-test-runner": "7.0.0-beta.3", "@babel/helper-plugin-test-runner": "7.0.0-beta.3",
"compat-table": "kangax/compat-table#957f1ff15972e8fb2892a172f985e9af27bf1c75" "compat-table": "kangax/compat-table#957f1ff15972e8fb2892a172f985e9af27bf1c75"
} }
} }

View File

@ -91,7 +91,7 @@ const foo = new Promise((resolve) => {
fs.writeFileSync( fs.writeFileSync(
path.join(tempFolderPath, "index.js"), path.join(tempFolderPath, "index.js"),
` `
import "babel-polyfill"; import "@babel/polyfill";
1 ** 2; 1 ** 2;
` `
); );

View File

@ -1,37 +1,37 @@
export default { export default {
"check-es2015-constants": require("babel-plugin-check-es2015-constants"), "check-es2015-constants": require("@babel/plugin-check-es2015-constants"),
"syntax-async-generators": require("babel-plugin-syntax-async-generators"), "syntax-async-generators": require("@babel/plugin-syntax-async-generators"),
"syntax-object-rest-spread": require("babel-plugin-syntax-object-rest-spread"), "syntax-object-rest-spread": require("@babel/plugin-syntax-object-rest-spread"),
"syntax-optional-catch-binding": require("babel-plugin-syntax-optional-catch-binding"), "syntax-optional-catch-binding": require("@babel/plugin-syntax-optional-catch-binding"),
"syntax-trailing-function-commas": require("babel-plugin-syntax-trailing-function-commas"), "syntax-trailing-function-commas": require("@babel/plugin-syntax-trailing-function-commas"),
"transform-async-to-generator": require("babel-plugin-transform-async-to-generator"), "transform-async-to-generator": require("@babel/plugin-transform-async-to-generator"),
"transform-async-generator-functions": require("babel-plugin-transform-async-generator-functions"), "transform-async-generator-functions": require("@babel/plugin-transform-async-generator-functions"),
"transform-es2015-arrow-functions": require("babel-plugin-transform-es2015-arrow-functions"), "transform-es2015-arrow-functions": require("@babel/plugin-transform-es2015-arrow-functions"),
"transform-es2015-block-scoped-functions": require("babel-plugin-transform-es2015-block-scoped-functions"), "transform-es2015-block-scoped-functions": require("@babel/plugin-transform-es2015-block-scoped-functions"),
"transform-es2015-block-scoping": require("babel-plugin-transform-es2015-block-scoping"), "transform-es2015-block-scoping": require("@babel/plugin-transform-es2015-block-scoping"),
"transform-es2015-classes": require("babel-plugin-transform-es2015-classes"), "transform-es2015-classes": require("@babel/plugin-transform-es2015-classes"),
"transform-es2015-computed-properties": require("babel-plugin-transform-es2015-computed-properties"), "transform-es2015-computed-properties": require("@babel/plugin-transform-es2015-computed-properties"),
"transform-es2015-destructuring": require("babel-plugin-transform-es2015-destructuring"), "transform-es2015-destructuring": require("@babel/plugin-transform-es2015-destructuring"),
"transform-es2015-duplicate-keys": require("babel-plugin-transform-es2015-duplicate-keys"), "transform-es2015-duplicate-keys": require("@babel/plugin-transform-es2015-duplicate-keys"),
"transform-es2015-for-of": require("babel-plugin-transform-es2015-for-of"), "transform-es2015-for-of": require("@babel/plugin-transform-es2015-for-of"),
"transform-es2015-function-name": require("babel-plugin-transform-es2015-function-name"), "transform-es2015-function-name": require("@babel/plugin-transform-es2015-function-name"),
"transform-es2015-literals": require("babel-plugin-transform-es2015-literals"), "transform-es2015-literals": require("@babel/plugin-transform-es2015-literals"),
"transform-es2015-modules-amd": require("babel-plugin-transform-es2015-modules-amd"), "transform-es2015-modules-amd": require("@babel/plugin-transform-es2015-modules-amd"),
"transform-es2015-modules-commonjs": require("babel-plugin-transform-es2015-modules-commonjs"), "transform-es2015-modules-commonjs": require("@babel/plugin-transform-es2015-modules-commonjs"),
"transform-es2015-modules-systemjs": require("babel-plugin-transform-es2015-modules-systemjs"), "transform-es2015-modules-systemjs": require("@babel/plugin-transform-es2015-modules-systemjs"),
"transform-es2015-modules-umd": require("babel-plugin-transform-es2015-modules-umd"), "transform-es2015-modules-umd": require("@babel/plugin-transform-es2015-modules-umd"),
"transform-es2015-object-super": require("babel-plugin-transform-es2015-object-super"), "transform-es2015-object-super": require("@babel/plugin-transform-es2015-object-super"),
"transform-es2015-parameters": require("babel-plugin-transform-es2015-parameters"), "transform-es2015-parameters": require("@babel/plugin-transform-es2015-parameters"),
"transform-es2015-shorthand-properties": require("babel-plugin-transform-es2015-shorthand-properties"), "transform-es2015-shorthand-properties": require("@babel/plugin-transform-es2015-shorthand-properties"),
"transform-es2015-spread": require("babel-plugin-transform-es2015-spread"), "transform-es2015-spread": require("@babel/plugin-transform-es2015-spread"),
"transform-es2015-sticky-regex": require("babel-plugin-transform-es2015-sticky-regex"), "transform-es2015-sticky-regex": require("@babel/plugin-transform-es2015-sticky-regex"),
"transform-es2015-template-literals": require("babel-plugin-transform-es2015-template-literals"), "transform-es2015-template-literals": require("@babel/plugin-transform-es2015-template-literals"),
"transform-es2015-typeof-symbol": require("babel-plugin-transform-es2015-typeof-symbol"), "transform-es2015-typeof-symbol": require("@babel/plugin-transform-es2015-typeof-symbol"),
"transform-es2015-unicode-regex": require("babel-plugin-transform-es2015-unicode-regex"), "transform-es2015-unicode-regex": require("@babel/plugin-transform-es2015-unicode-regex"),
"transform-exponentiation-operator": require("babel-plugin-transform-exponentiation-operator"), "transform-exponentiation-operator": require("@babel/plugin-transform-exponentiation-operator"),
"transform-new-target": require("babel-plugin-transform-new-target"), "transform-new-target": require("@babel/plugin-transform-new-target"),
"transform-object-rest-spread": require("babel-plugin-transform-object-rest-spread"), "transform-object-rest-spread": require("@babel/plugin-transform-object-rest-spread"),
"transform-optional-catch-binding": require("babel-plugin-transform-optional-catch-binding"), "transform-optional-catch-binding": require("@babel/plugin-transform-optional-catch-binding"),
"transform-regenerator": require("babel-plugin-transform-regenerator"), "transform-regenerator": require("@babel/plugin-transform-regenerator"),
"transform-unicode-property-regex": require("babel-plugin-transform-unicode-property-regex"), "transform-unicode-property-regex": require("@babel/plugin-transform-unicode-property-regex"),
}; };

View File

@ -1,7 +1,7 @@
const chai = require("chai"); const chai = require("chai");
const child = require("child_process"); const child = require("child_process");
const fs = require("fs-extra"); const fs = require("fs-extra");
const helper = require("babel-helper-fixtures"); const helper = require("@babel/helper-fixtures");
const path = require("path"); const path = require("path");
const fixtureLoc = path.join(__dirname, "debug-fixtures"); const fixtureLoc = path.join(__dirname, "debug-fixtures");

View File

@ -1,3 +1,3 @@
import runner from "babel-helper-plugin-test-runner"; import runner from "@babel/helper-plugin-test-runner";
runner(__dirname); runner(__dirname);

View File

@ -1,3 +1,3 @@
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
Symbol.iterator in arr; Symbol.iterator in arr;

View File

@ -1,3 +1,3 @@
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
arr[Symbol.iterator](); arr[Symbol.iterator]();

View File

@ -1,5 +1,5 @@
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
function* a() { function* a() {
yield* 1; yield* 1;
} }

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,2 +1,2 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view"; import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1 +1 @@
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,19 +1,19 @@
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within"; import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at"; import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es6.array.fill"; import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index"; import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.find"; import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es7.array.includes"; import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es6.string.includes"; import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
Array.from; // static function Array.from; // static function
Map; // top level built-in Map; // top level built-in
@ -47,4 +47,4 @@ j["search"]; // computed with template
k[asdf3]; // computed with concat strings k[asdf3]; // computed with concat strings
var _k2 = k, var _k2 = k,
_a = _k2[asdf2]; // computed _a = _k2[asdf2]; // computed

View File

@ -1,9 +1,9 @@
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
Array.from; // static method Array.from; // static method
Map; // built-in Map; // built-in
@ -31,4 +31,4 @@ G.assign; // static method
function H(WeakMap) { function H(WeakMap) {
var blah = new WeakMap(); var blah = new WeakMap();
} // shadowed } // shadowed

View File

@ -1,5 +1,5 @@
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";
var a = function () { var a = function () {
var _ref = _asyncToGenerator( var _ref = _asyncToGenerator(

View File

@ -1,4 +1,4 @@
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";
var _marked = var _marked =
/*#__PURE__*/ /*#__PURE__*/

View File

@ -1,4 +1,4 @@
import "babel-polyfill"; import "@babel/polyfill";
import "babel-polyfill"; import "@babel/polyfill";
require("babel-polyfill"); require("@babel/polyfill");
require("babel-polyfill"); require("@babel/polyfill");

View File

@ -1,5 +1,5 @@
"use strict"; "use strict";
require("babel-polyfill/lib/core-js/modules/es6.promise"); require("@babel/polyfill/lib/core-js/modules/es6.promise");
Promise; Promise;

View File

@ -1,3 +1,3 @@
import "babel-polyfill"; import "@babel/polyfill";
a ** b; a ** b;

View File

@ -1,9 +1,9 @@
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
a ** b; a ** b;

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,7 +1,7 @@
import "babel-polyfill"; import "@babel/polyfill";
async function a() { async function a() {
await 1; await 1;
} }
(() => {}) (() => {})

View File

@ -1,11 +1,11 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
async function a() { async function a() {
await 1; await 1;
} }
(function () {}); (function () {});

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,98 +1,98 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer"; import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view"; import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map"; import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set"; import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze"; import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal"; import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys"; import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign"; import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is"; import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.object.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.function.name"; import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw"; import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point"; import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at"; import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat"; import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes"; import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of"; import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within"; import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find"; import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index"; import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill"; import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator"; import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon"; import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt"; import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32"; import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1"; import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround"; import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot"; import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul"; import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p"; import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10"; import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2"; import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign"; import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc"; import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes"; import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,97 +1,97 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer"; import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map"; import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set"; import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze"; import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal"; import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys"; import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign"; import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is"; import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.function.name"; import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw"; import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point"; import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at"; import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat"; import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes"; import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of"; import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within"; import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find"; import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index"; import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill"; import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator"; import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon"; import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt"; import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32"; import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1"; import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround"; import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot"; import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul"; import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p"; import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10"; import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2"; import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign"; import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc"; import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes"; import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,7 +1,7 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";

View File

@ -1,12 +1,12 @@
"use strict"; "use strict";
require("babel-polyfill/lib/core-js/modules/es6.symbol"); require("@babel/polyfill/lib/core-js/modules/es6.symbol");
require("babel-polyfill/lib/core-js/modules/es6.promise"); require("@babel/polyfill/lib/core-js/modules/es6.promise");
require("babel-polyfill/lib/regenerator-runtime/runtime"); require("@babel/polyfill/lib/regenerator-runtime/runtime");
require("babel-polyfill/lib/core-js/modules/es6.object.assign"); require("@babel/polyfill/lib/core-js/modules/es6.object.assign");
var agf = function () { var agf = function () {
var _ref = _asyncGenerator.wrap( var _ref = _asyncGenerator.wrap(

View File

@ -1,3 +1,3 @@
import "babel-polyfill"; import "@babel/polyfill";
const a = 1; const a = 1;

View File

@ -1,7 +1,7 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";
var a = 1; var a = 1;

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,99 +1,99 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer"; import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view"; import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map"; import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set"; import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze"; import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal"; import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys"; import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign"; import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is"; import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.object.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.function.name"; import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw"; import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point"; import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at"; import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat"; import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes"; import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of"; import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within"; import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find"; import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index"; import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill"; import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator"; import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon"; import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt"; import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32"; import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1"; import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround"; import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot"; import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul"; import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p"; import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10"; import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2"; import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign"; import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc"; import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes"; import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,2 +1,2 @@
import "babel-polyfill"; import "@babel/polyfill";
1 ** 2; 1 ** 2;

View File

@ -1,46 +1,46 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer"; import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map"; import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set"; import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.function.name"; import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";
Math.pow(1, 2); Math.pow(1, 2);

View File

@ -1,2 +1,2 @@
import "babel-polyfill"; import "@babel/polyfill";
1 ** 2; 1 ** 2;

View File

@ -1,32 +1,32 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer"; import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map"; import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set"; import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.function.name"; import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";
Math.pow(1, 2); Math.pow(1, 2);

View File

@ -1,2 +1,2 @@
import "babel-polyfill"; import "@babel/polyfill";
1 ** 2; 1 ** 2;

View File

@ -1,4 +1,4 @@
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
1 ** 2; 1 ** 2;

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,99 +1,99 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer"; import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view"; import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array"; import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map"; import "@babel/polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set"; import "@babel/polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map"; import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set"; import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise"; import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol"; import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze"; import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal"; import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions"; import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible"; import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys"; import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names"; import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign"; import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is"; import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.object.set-prototype-of"; import "@babel/polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.function.name"; import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw"; import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point"; import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at"; import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat"; import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with"; import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes"; import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search"; import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from"; import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of"; import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within"; import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find"; import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index"; import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill"; import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator"; import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan"; import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon"; import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer"; import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int"; import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt"; import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32"; import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh"; import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1"; import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround"; import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot"; import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul"; import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p"; import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10"; import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2"; import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign"; import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh"; import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh"; import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc"; import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes"; import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values"; import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries"; import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors"; import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,2 +1,2 @@
import "babel-polyfill"; import "@babel/polyfill";
1 ** 2; 1 ** 2;

View File

@ -1,6 +1,6 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
1 ** 2; 1 ** 2;

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,6 +1,6 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers"; import "@babel/polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate"; import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable"; import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1 +1 @@
import "babel-polyfill"; import "@babel/polyfill";

View File

@ -1,3 +1,3 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end"; import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/regenerator-runtime/runtime"; import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,3 +1,3 @@
require("babel-polyfill"); require("@babel/polyfill");
1 ** 2; 1 ** 2;

View File

@ -1,11 +1,11 @@
require("babel-polyfill/lib/core-js/modules/es7.string.pad-start"); require("@babel/polyfill/lib/core-js/modules/es7.string.pad-start");
require("babel-polyfill/lib/core-js/modules/es7.string.pad-end"); require("@babel/polyfill/lib/core-js/modules/es7.string.pad-end");
require("babel-polyfill/lib/core-js/modules/web.timers"); require("@babel/polyfill/lib/core-js/modules/web.timers");
require("babel-polyfill/lib/core-js/modules/web.immediate"); require("@babel/polyfill/lib/core-js/modules/web.immediate");
require("babel-polyfill/lib/core-js/modules/web.dom.iterable"); require("@babel/polyfill/lib/core-js/modules/web.dom.iterable");
1 ** 2; 1 ** 2;