actually delete the functions

This commit is contained in:
MathMan05
2025-11-25 23:50:45 -06:00
parent 54540a8b14
commit bbd75f1e6c
-8
View File
@@ -51,14 +51,6 @@ export function arrayRemove<T>(this: T[], item: T): void {
}
}
export function arrayFirst<T>(this: T[]): T | undefined {
return this[0];
}
export function arrayLast<T>(this: T[]): T | undefined {
return this[this.length - 1];
}
export function arrayDistinct<T>(this: T[]): T[] {
return Array.from(new Set(this));
}