Skip to content

Instantly share code, notes, and snippets.

@MarekZeman91
Created July 3, 2024 16:38
Show Gist options
  • Save MarekZeman91/4b8f1cd37039dc6dbe49da954fa1af8f to your computer and use it in GitHub Desktop.
Save MarekZeman91/4b8f1cd37039dc6dbe49da954fa1af8f to your computer and use it in GitHub Desktop.
export function useArrayHash<T>(array: T[], key: keyof T): string {
return array.map((x) => x[key]).join("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment