Comparing version 1.0.0 to 1.0.1
@@ -6,4 +6,4 @@ type NestedArray = Array<PrimitiveOrNested> | ReadonlyArray<PrimitiveOrNested>; | ||
type PrimitiveOrNested = boolean | string | number | undefined | null | bigint | Date | NestedObject | NestedArray; | ||
declare const toKey: (value: PrimitiveOrNested) => string; | ||
declare const toKey: <T extends PrimitiveOrNested>(value: T) => string; | ||
export { toKey as default }; | ||
export { type PrimitiveOrNested, toKey as default }; |
{ | ||
"name": "keyweaver", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"author": "Andrii Dubetskyi", | ||
@@ -5,0 +5,0 @@ "description": "Generate unique string keys from nested data structures", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
9863