Sha256: c9c7d93e2c4a35942a59326602b8b51815724ea032e4e25ec965b4530da4d617

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 KB

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = void 0;

function _helperPluginUtils() {
  const data = require("@babel/helper-plugin-utils");

  _helperPluginUtils = function () {
    return data;
  };

  return data;
}

function _helperFunctionName() {
  const data = _interopRequireDefault(require("@babel/helper-function-name"));

  _helperFunctionName = function () {
    return data;
  };

  return data;
}

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

var _default = (0, _helperPluginUtils().declare)(api => {
  api.assertVersion(7);
  return {
    name: "transform-function-name",
    visitor: {
      FunctionExpression: {
        exit(path) {
          if (path.key !== "value" && !path.parentPath.isObjectProperty()) {
            const replacement = (0, _helperFunctionName().default)(path);
            if (replacement) path.replaceWith(replacement);
          }
        }

      },

      ObjectProperty(path) {
        const value = path.get("value");

        if (value.isFunction()) {
          const newNode = (0, _helperFunctionName().default)(value);
          if (newNode) value.replaceWith(newNode);
        }
      }

    }
  };
});

exports.default = _default;

Version data entries

13 entries across 13 versions & 5 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/@babel/plugin-transform-function-name/lib/index.js
disco_app-0.18.2 test/dummy/node_modules/@babel/plugin-transform-function-name/lib/index.js
condenser-0.0.8 lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/lib/index.js
learn_create-0.0.22 lib/templates/javascript_lab_template/node_modules/@babel/plugin-transform-function-name/lib/index.js
jester-data-8.0.0 node_modules/@babel/plugin-transform-function-name/lib/index.js
ezii-os-5.2.1 node_modules/@babel/plugin-transform-function-name/lib/index.js
ezii-os-2.0.1 node_modules/@babel/plugin-transform-function-name/lib/index.js
ezii-os-1.1.0 node_modules/@babel/plugin-transform-function-name/lib/index.js
ezii-os-1.0.0 node_modules/@babel/plugin-transform-function-name/lib/index.js
condenser-0.0.7 lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/lib/index.js
ezii-os-0.0.0.1.0 node_modules/@babel/plugin-transform-function-name/lib/index.js
ezii-os-0.0.0.0.1 node_modules/@babel/plugin-transform-function-name/lib/index.js
condenser-0.0.5 lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/lib/index.js