1
0

move identity function to utils

This commit is contained in:
2025-06-07 09:31:17 +02:00
parent afa4c8a684
commit 637991c394
4 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,3 @@
export function identity<T>(obj: T) {
return obj;
}
export function looseEquals<T>(a: T, b: T) {
return a == b;
}