Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-duplicate-keys

Package Overview
Dependencies
1
Maintainers
4
Versions
72
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.21.4-esm.4 to 7.22.5

19

lib/index.js

@@ -1,5 +0,11 @@

import { declare } from "@babel/helper-plugin-utils";
import { types as t } from "@babel/core";
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _core = require("@babel/core");
function getName(key) {
if (t.isIdentifier(key)) {
if (_core.types.isIdentifier(key)) {
return key.name;

@@ -9,3 +15,3 @@ }

}
export default declare(api => {
var _default = (0, _helperPluginUtils.declare)(api => {
api.assertVersion(7);

@@ -19,3 +25,3 @@ return {

} = path;
const plainProps = node.properties.filter(prop => !t.isSpreadElement(prop) && !prop.computed);
const plainProps = node.properties.filter(prop => !_core.types.isSpreadElement(prop) && !prop.computed);
const alreadySeenData = Object.create(null);

@@ -48,3 +54,3 @@ const alreadySeenGetters = Object.create(null);

prop.computed = true;
prop.key = t.stringLiteral(name);
prop.key = _core.types.stringLiteral(name);
}

@@ -56,3 +62,4 @@ }

});
exports.default = _default;
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-duplicate-keys",
"version": "7.21.4-esm.4",
"version": "7.22.5",
"description": "Compile objects with duplicate keys to valid strict ES5",

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

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

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

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc