feat: refactoring project
This commit is contained in:
34
node_modules/@babel/plugin-transform-destructuring/lib/index.js
generated
vendored
34
node_modules/@babel/plugin-transform-destructuring/lib/index.js
generated
vendored
@@ -105,7 +105,39 @@ class DestructuringTransformer {
|
||||
if (this.iterableIsArray || core.types.isIdentifier(node) && this.arrayRefSet.has(node.name)) {
|
||||
return node;
|
||||
} else {
|
||||
return this.scope.toArray(node, count, this.arrayLikeIsIterable);
|
||||
const {
|
||||
scope,
|
||||
arrayLikeIsIterable
|
||||
} = this;
|
||||
if (core.types.isIdentifier(node)) {
|
||||
const binding = scope.getBinding(node.name);
|
||||
if (binding != null && binding.constant && binding.path.isGenericType("Array")) {
|
||||
return node;
|
||||
}
|
||||
}
|
||||
if (core.types.isArrayExpression(node)) {
|
||||
return node;
|
||||
}
|
||||
if (core.types.isIdentifier(node, {
|
||||
name: "arguments"
|
||||
})) {
|
||||
return core.template.expression.ast`
|
||||
Array.prototype.slice.call(${node})
|
||||
`;
|
||||
}
|
||||
let helperName;
|
||||
const args = [node];
|
||||
if (typeof count === "number") {
|
||||
args.push(core.types.numericLiteral(count));
|
||||
helperName = "slicedToArray";
|
||||
} else {
|
||||
helperName = "toArray";
|
||||
}
|
||||
if (arrayLikeIsIterable) {
|
||||
args.unshift(scope.path.hub.addHelper(helperName));
|
||||
helperName = "maybeArrayLike";
|
||||
}
|
||||
return core.types.callExpression(scope.path.hub.addHelper(helperName), args);
|
||||
}
|
||||
}
|
||||
pushAssignmentPattern({
|
||||
|
||||
2
node_modules/@babel/plugin-transform-destructuring/lib/index.js.map
generated
vendored
2
node_modules/@babel/plugin-transform-destructuring/lib/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
10
node_modules/@babel/plugin-transform-destructuring/package.json
generated
vendored
10
node_modules/@babel/plugin-transform-destructuring/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-destructuring",
|
||||
"version": "7.24.8",
|
||||
"version": "7.25.9",
|
||||
"description": "Compile ES2015 destructuring to ES5",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.24.8"
|
||||
"@babel/helper-plugin-utils": "^7.25.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.24.8",
|
||||
"@babel/helper-plugin-test-runner": "^7.24.7",
|
||||
"@babel/traverse": "^7.24.8"
|
||||
"@babel/core": "^7.25.9",
|
||||
"@babel/helper-plugin-test-runner": "^7.25.9",
|
||||
"@babel/traverse": "^7.25.9"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
17
node_modules/@babel/plugin-transform-destructuring/tsconfig.json
generated
vendored
17
node_modules/@babel/plugin-transform-destructuring/tsconfig.json
generated
vendored
@@ -1,17 +0,0 @@
|
||||
/* This file is automatically generated by scripts/generators/tsconfig.js */
|
||||
{
|
||||
"extends": [
|
||||
"../../tsconfig.base.json",
|
||||
"../../tsconfig.paths.json"
|
||||
],
|
||||
"include": [
|
||||
"../../packages/babel-plugin-transform-destructuring/src/**/*.ts",
|
||||
"../../lib/globals.d.ts",
|
||||
"../../scripts/repo-utils/*.d.ts"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "../../packages/babel-helper-plugin-utils"
|
||||
}
|
||||
]
|
||||
}
|
||||
1
node_modules/@babel/plugin-transform-destructuring/tsconfig.tsbuildinfo
generated
vendored
1
node_modules/@babel/plugin-transform-destructuring/tsconfig.tsbuildinfo
generated
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user