summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/node/node_modules/@babel/helper-get-function-arity/lib/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/node/node_modules/@babel/helper-get-function-arity/lib/index.js')
-rw-r--r--chromium/third_party/node/node_modules/@babel/helper-get-function-arity/lib/index.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/chromium/third_party/node/node_modules/@babel/helper-get-function-arity/lib/index.js b/chromium/third_party/node/node_modules/@babel/helper-get-function-arity/lib/index.js
new file mode 100644
index 00000000000..61e22edd292
--- /dev/null
+++ b/chromium/third_party/node/node_modules/@babel/helper-get-function-arity/lib/index.js
@@ -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;
+} \ No newline at end of file