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