Socket
Socket
Sign inDemoInstall

camelcase-keys

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

camelcase-keys - npm Package Compare versions

Comparing version 8.0.1 to 8.0.2

20

index.d.ts

@@ -48,12 +48,14 @@ import {CamelCase, PascalCase} from 'type-fest';

? {
[P in keyof T]: T[P] extends Record<string, any> | readonly any[]
// eslint-disable-next-line @typescript-eslint/ban-types
[P in keyof T]: {} extends CamelCaseKeys<T[P]>
? T[P]
: CamelCaseKeys<
T[P],
Deep,
IsPascalCase,
Exclude,
StopPaths
>;
? {} extends CamelCaseKeys<T[P]>
? T[P]
: CamelCaseKeys<
T[P],
Deep,
IsPascalCase,
Exclude,
StopPaths
>
: T[P];
}

@@ -60,0 +62,0 @@ : T extends Record<string, any>

{
"name": "camelcase-keys",
"version": "8.0.1",
"version": "8.0.2",
"description": "Convert object keys to camel case",

@@ -64,3 +64,3 @@ "license": "MIT",

"matcha": "^0.7.0",
"tsd": "^0.20.0",
"tsd": "^0.23.0",
"xo": "^0.49.0"

@@ -67,0 +67,0 @@ },

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