mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-04 15:12:20 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
36
web/node_modules/@babel/preset-modules/lib/plugins/transform-edge-default-parameters/index.js
generated
vendored
Normal file
36
web/node_modules/@babel/preset-modules/lib/plugins/transform-edge-default-parameters/index.js
generated
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
/**
|
||||
* Converts destructured parameters with default values to non-shorthand syntax.
|
||||
* This fixes the only arguments-related bug in ES Modules-supporting browsers (Edge 16 & 17).
|
||||
* Use this plugin instead of @babel/plugin-transform-parameters when targeting ES Modules.
|
||||
*/
|
||||
var _default = ({
|
||||
types: t
|
||||
}) => {
|
||||
const isArrowParent = p => p.parentKey === "params" && p.parentPath && t.isArrowFunctionExpression(p.parentPath);
|
||||
|
||||
return {
|
||||
name: "transform-edge-default-parameters",
|
||||
visitor: {
|
||||
AssignmentPattern(path) {
|
||||
const arrowArgParent = path.find(isArrowParent);
|
||||
|
||||
if (arrowArgParent && path.parent.shorthand) {
|
||||
// In Babel 7+, there is no way to force non-shorthand properties.
|
||||
path.parent.shorthand = false;
|
||||
(path.parent.extra || {}).shorthand = false; // So, to ensure non-shorthand, rename the local identifier so it no longer matches:
|
||||
|
||||
path.scope.rename(path.parent.key.name);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
exports.default = _default;
|
||||
module.exports = exports.default;
|
Loading…
Add table
Add a link
Reference in a new issue