Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-react-constant-elements

Package Overview
Dependencies
Maintainers
4
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-react-constant-elements - npm Package Compare versions

Comparing version 7.21.4-esm to 7.21.4-esm.1

33

lib/index.js

@@ -1,10 +0,4 @@

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _core = require("@babel/core");
var _default = (0, _helperPluginUtils.declare)((api, options) => {
import { declare } from "@babel/helper-plugin-utils";
import { types as t, template } from "@babel/core";
export default declare((api, options) => {
api.assertVersion(7);

@@ -19,9 +13,9 @@ const {

function declares(node, scope) {
if (_core.types.isJSXIdentifier(node, {
if (t.isJSXIdentifier(node, {
name: "this"
}) || _core.types.isJSXIdentifier(node, {
}) || t.isJSXIdentifier(node, {
name: "arguments"
}) || _core.types.isJSXIdentifier(node, {
}) || t.isJSXIdentifier(node, {
name: "super"
}) || _core.types.isJSXIdentifier(node, {
}) || t.isJSXIdentifier(node, {
name: "new"

@@ -114,3 +108,3 @@ })) {

}
} else if (_core.types.isIdentifier(expressionResult.deopt)) {
} else if (t.isIdentifier(expressionResult.deopt)) {
return;

@@ -132,3 +126,3 @@ }

let lastSegment = name;
while (_core.types.isJSXMemberExpression(lastSegment)) {
while (t.isJSXMemberExpression(lastSegment)) {
lastSegment = lastSegment.property;

@@ -168,10 +162,10 @@ }

targetScope.push({
id: _core.types.identifier(id)
id: t.identifier(id)
});
HOISTED.set(path.node, targetScope);
let replacement = _core.template.expression.ast`
${_core.types.identifier(id)} || (${_core.types.identifier(id)} = ${path.node})
let replacement = template.expression.ast`
${t.identifier(id)} || (${t.identifier(id)} = ${path.node})
`;
if (path.parentPath.isJSXElement() || path.parentPath.isJSXAttribute()) {
replacement = _core.types.jsxExpressionContainer(replacement);
replacement = t.jsxExpressionContainer(replacement);
}

@@ -183,4 +177,3 @@ path.replaceWith(replacement);

});
exports.default = _default;
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-react-constant-elements",
"version": "7.21.4-esm",
"version": "7.21.4-esm.1",
"description": "Treat React JSX elements as value types and hoist them to the highest scope",

@@ -20,10 +20,10 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "^7.21.4-esm"
"@babel/helper-plugin-utils": "^7.21.4-esm.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0 || 7.21.4-esm"
"@babel/core": "^7.0.0-0 || 7.21.4-esm.1"
},
"devDependencies": {
"@babel/core": "^7.21.4-esm",
"@babel/helper-plugin-test-runner": "^7.21.4-esm"
"@babel/core": "^7.21.4-esm.1",
"@babel/helper-plugin-test-runner": "^7.21.4-esm.1"
},

@@ -34,3 +34,3 @@ "engines": {

"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"type": "module"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc