保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 26fa49f4b0aa658d65a21fffe828f39e78302573
PAMapp/node_modules/@babel/plugin-transform-spread/lib/index.js
@@ -81,7 +81,7 @@
        } = path;
        const elements = node.elements;
        if (!hasSpread(elements)) return;
        const nodes = build(elements, scope, this);
        const nodes = build(elements, scope, this.file);
        let first = nodes[0];
        if (nodes.length === 1 && first !== elements[0].argument) {
@@ -120,7 +120,7 @@
        })) {
          nodes = [args[0].argument];
        } else {
          nodes = build(args, scope, this);
          nodes = build(args, scope, this.file);
        }
        const first = nodes.shift();
@@ -133,7 +133,7 @@
        const callee = calleePath.node;
        if (calleePath.isMemberExpression()) {
        if (_core.types.isMemberExpression(callee)) {
          const temp = scope.maybeGenerateMemoised(callee.object);
          if (temp) {
@@ -159,7 +159,7 @@
          scope
        } = path;
        if (!hasSpread(node.arguments)) return;
        const nodes = build(node.arguments, scope, this);
        const nodes = build(node.arguments, scope, this.file);
        const first = nodes.shift();
        let args;