Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
22
my-app/node_modules/@babel/helper-wrap-function/LICENSE
generated
vendored
Executable file
22
my-app/node_modules/@babel/helper-wrap-function/LICENSE
generated
vendored
Executable file
|
@ -0,0 +1,22 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
19
my-app/node_modules/@babel/helper-wrap-function/README.md
generated
vendored
Executable file
19
my-app/node_modules/@babel/helper-wrap-function/README.md
generated
vendored
Executable file
|
@ -0,0 +1,19 @@
|
|||
# @babel/helper-wrap-function
|
||||
|
||||
> Helper to wrap functions inside a function call.
|
||||
|
||||
See our website [@babel/helper-wrap-function](https://babeljs.io/docs/babel-helper-wrap-function) for more information.
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```sh
|
||||
npm install --save @babel/helper-wrap-function
|
||||
```
|
||||
|
||||
or using yarn:
|
||||
|
||||
```sh
|
||||
yarn add @babel/helper-wrap-function
|
||||
```
|
123
my-app/node_modules/@babel/helper-wrap-function/lib/index.js
generated
vendored
Executable file
123
my-app/node_modules/@babel/helper-wrap-function/lib/index.js
generated
vendored
Executable file
|
@ -0,0 +1,123 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = wrapFunction;
|
||||
var _helperFunctionName = require("@babel/helper-function-name");
|
||||
var _template = require("@babel/template");
|
||||
var _t = require("@babel/types");
|
||||
const {
|
||||
blockStatement,
|
||||
callExpression,
|
||||
functionExpression,
|
||||
isAssignmentPattern,
|
||||
isFunctionDeclaration,
|
||||
isRestElement,
|
||||
returnStatement,
|
||||
isCallExpression
|
||||
} = _t;
|
||||
const buildAnonymousExpressionWrapper = _template.default.expression(`
|
||||
(function () {
|
||||
var REF = FUNCTION;
|
||||
return function NAME(PARAMS) {
|
||||
return REF.apply(this, arguments);
|
||||
};
|
||||
})()
|
||||
`);
|
||||
const buildNamedExpressionWrapper = _template.default.expression(`
|
||||
(function () {
|
||||
var REF = FUNCTION;
|
||||
function NAME(PARAMS) {
|
||||
return REF.apply(this, arguments);
|
||||
}
|
||||
return NAME;
|
||||
})()
|
||||
`);
|
||||
const buildDeclarationWrapper = _template.default.statements(`
|
||||
function NAME(PARAMS) { return REF.apply(this, arguments); }
|
||||
function REF() {
|
||||
REF = FUNCTION;
|
||||
return REF.apply(this, arguments);
|
||||
}
|
||||
`);
|
||||
function classOrObjectMethod(path, callId) {
|
||||
const node = path.node;
|
||||
const body = node.body;
|
||||
const container = functionExpression(null, [], blockStatement(body.body), true);
|
||||
body.body = [returnStatement(callExpression(callExpression(callId, [container]), []))];
|
||||
node.async = false;
|
||||
node.generator = false;
|
||||
path.get("body.body.0.argument.callee.arguments.0").unwrapFunctionEnvironment();
|
||||
}
|
||||
function plainFunction(inPath, callId, noNewArrows, ignoreFunctionLength) {
|
||||
let path = inPath;
|
||||
let node;
|
||||
let functionId = null;
|
||||
const nodeParams = inPath.node.params;
|
||||
if (path.isArrowFunctionExpression()) {
|
||||
{
|
||||
var _path$arrowFunctionTo;
|
||||
path = (_path$arrowFunctionTo = path.arrowFunctionToExpression({
|
||||
noNewArrows
|
||||
})) != null ? _path$arrowFunctionTo : path;
|
||||
}
|
||||
node = path.node;
|
||||
} else {
|
||||
node = path.node;
|
||||
}
|
||||
const isDeclaration = isFunctionDeclaration(node);
|
||||
let built = node;
|
||||
if (!isCallExpression(node)) {
|
||||
functionId = node.id;
|
||||
node.id = null;
|
||||
node.type = "FunctionExpression";
|
||||
built = callExpression(callId, [node]);
|
||||
}
|
||||
const params = [];
|
||||
for (const param of nodeParams) {
|
||||
if (isAssignmentPattern(param) || isRestElement(param)) {
|
||||
break;
|
||||
}
|
||||
params.push(path.scope.generateUidIdentifier("x"));
|
||||
}
|
||||
const wrapperArgs = {
|
||||
NAME: functionId || null,
|
||||
REF: path.scope.generateUidIdentifier(functionId ? functionId.name : "ref"),
|
||||
FUNCTION: built,
|
||||
PARAMS: params
|
||||
};
|
||||
if (isDeclaration) {
|
||||
const container = buildDeclarationWrapper(wrapperArgs);
|
||||
path.replaceWith(container[0]);
|
||||
path.insertAfter(container[1]);
|
||||
} else {
|
||||
let container;
|
||||
if (functionId) {
|
||||
container = buildNamedExpressionWrapper(wrapperArgs);
|
||||
} else {
|
||||
container = buildAnonymousExpressionWrapper(wrapperArgs);
|
||||
const returnFn = container.callee.body.body[1].argument;
|
||||
(0, _helperFunctionName.default)({
|
||||
node: returnFn,
|
||||
parent: path.parent,
|
||||
scope: path.scope
|
||||
});
|
||||
functionId = returnFn.id;
|
||||
}
|
||||
if (functionId || !ignoreFunctionLength && params.length) {
|
||||
path.replaceWith(container);
|
||||
} else {
|
||||
path.replaceWith(built);
|
||||
}
|
||||
}
|
||||
}
|
||||
function wrapFunction(path, callId, noNewArrows = true, ignoreFunctionLength = false) {
|
||||
if (path.isMethod()) {
|
||||
classOrObjectMethod(path, callId);
|
||||
} else {
|
||||
plainFunction(path, callId, noNewArrows, ignoreFunctionLength);
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=index.js.map
|
1
my-app/node_modules/@babel/helper-wrap-function/lib/index.js.map
generated
vendored
Executable file
1
my-app/node_modules/@babel/helper-wrap-function/lib/index.js.map
generated
vendored
Executable file
File diff suppressed because one or more lines are too long
29
my-app/node_modules/@babel/helper-wrap-function/package.json
generated
vendored
Executable file
29
my-app/node_modules/@babel/helper-wrap-function/package.json
generated
vendored
Executable file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"name": "@babel/helper-wrap-function",
|
||||
"version": "7.22.20",
|
||||
"description": "Helper to wrap functions inside a function call.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-wrap-function"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-wrap-function",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "^7.22.5",
|
||||
"@babel/template": "^7.22.15",
|
||||
"@babel/types": "^7.22.19"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "^7.22.20"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"type": "commonjs"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue