Socket
Socket
Sign inDemoInstall

@typescript-eslint/utils

Package Overview
Dependencies
Maintainers
2
Versions
2103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typescript-eslint/utils - npm Package Compare versions

Comparing version 8.4.1-alpha.5 to 8.4.1-alpha.6

4

dist/eslint-utils/deepMerge.js

@@ -21,4 +21,4 @@ "use strict";

// get the unique set of keys across both objects
const keys = new Set(Object.keys(first).concat(Object.keys(second)));
return Object.fromEntries(Array.from(keys, key => {
const keys = new Set([...Object.keys(first), ...Object.keys(second)]);
return Object.fromEntries([...keys].map(key => {
const firstHasKey = key in first;

@@ -25,0 +25,0 @@ const secondHasKey = key in second;

{
"name": "@typescript-eslint/utils",
"version": "8.4.1-alpha.5",
"version": "8.4.1-alpha.6",
"description": "Utilities for working with TypeScript + ESLint together",

@@ -67,5 +67,5 @@ "files": [

"@eslint-community/eslint-utils": "^4.4.0",
"@typescript-eslint/scope-manager": "8.4.1-alpha.5",
"@typescript-eslint/types": "8.4.1-alpha.5",
"@typescript-eslint/typescript-estree": "8.4.1-alpha.5"
"@typescript-eslint/scope-manager": "8.4.1-alpha.6",
"@typescript-eslint/types": "8.4.1-alpha.6",
"@typescript-eslint/typescript-estree": "8.4.1-alpha.6"
},

@@ -72,0 +72,0 @@ "peerDependencies": {

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