Identity function for different types https://medium.com/p/177b4a654ef6
const identityStringFn = (arg: string): string => arg; | |
const identityNumberFn = (arg: number): number => arg; | |
const identityBooleanFn = (arg: boolean): boolean => arg; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment