@rbxts/phantom
Advanced tools
Comparing version 0.6.1 to 0.6.2
{ | ||
"name": "@rbxts/phantom", | ||
"description": "Data manipulation library for Roblox", | ||
"version": "0.6.1", | ||
"version": "0.6.2", | ||
"scripts": { | ||
@@ -6,0 +6,0 @@ "build:bench": "rojo sourcemap benchmarks.project.json --output sourcemap.json", |
@@ -526,1 +526,8 @@ /** | ||
]; | ||
/** | ||
* Workaround for inability to use statically typed `length` field of array-like types. | ||
*/ | ||
export type ArrayLength<TValue, TCurrentLength extends number = 0> = TValue extends [infer _, ...infer TRest] | ||
? ArrayLength<TRest, Incr[TCurrentLength]> | ||
: TCurrentLength; |
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
98904
1359