mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
4 lines
111 B
TypeScript
4 lines
111 B
TypeScript
export function unique<T>(val: T, index: number, arr: T[]): boolean {
|
|
return arr.indexOf(val) === index;
|
|
}
|