Add node modules and new code for release (#57)
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
da63a48ad7
commit
a517f2ff65
27
node_modules/@babel/helper-get-function-arity/lib/index.js
generated
vendored
Normal file
27
node_modules/@babel/helper-get-function-arity/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = _default;
|
||||
|
||||
var _t = require("@babel/types");
|
||||
|
||||
const {
|
||||
isAssignmentPattern,
|
||||
isRestElement
|
||||
} = _t;
|
||||
|
||||
function _default(node) {
|
||||
const params = node.params;
|
||||
|
||||
for (let i = 0; i < params.length; i++) {
|
||||
const param = params[i];
|
||||
|
||||
if (isAssignmentPattern(param) || isRestElement(param)) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
return params.length;
|
||||
}
|
Reference in New Issue
Block a user