snakecase-keys
Advanced tools
Comparing version 5.4.3 to 5.4.4
@@ -54,3 +54,5 @@ import { SnakeCase } from "type-fest"; | ||
{ | ||
[P in keyof T]: SnakeCaseKeys<T[P], Deep, Exclude>; | ||
[P in keyof T]: T[P] extends Record<string, any> | readonly any[] | ||
? SnakeCaseKeys<T[P], Deep, Exclude> | ||
: T[P]; | ||
} | ||
@@ -57,0 +59,0 @@ : T extends Record<string, any> |
{ | ||
"name": "snakecase-keys", | ||
"main": "index.js", | ||
"version": "5.4.3", | ||
"version": "5.4.4", | ||
"description": "Convert an object's keys to snake case", | ||
@@ -26,3 +26,3 @@ "license": "MIT", | ||
"tape": "^5.0.1", | ||
"tsd": "^0.22.0" | ||
"tsd": "^0.23.0" | ||
}, | ||
@@ -29,0 +29,0 @@ "files": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6547
119