@rbxts/phantom
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "@rbxts/phantom", | ||
"description": "Immutable data library for Luau.", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"main": "src/init.luau", | ||
@@ -6,0 +6,0 @@ "typings": "src/index.d.ts", |
@@ -81,5 +81,5 @@ export = PhantomArray; | ||
export function map<T, U extends T>( | ||
array: T[], | ||
mapper: (value: T, index: number, array: Readonly<T[]>) => U, | ||
export function map<T extends object, U>( | ||
array: T, | ||
mapper: (value: T[keyof T], index: number, array: Readonly<T>) => U, | ||
): U[]; | ||
@@ -86,0 +86,0 @@ |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
94889
0