Skip to content

Instantly share code, notes, and snippets.

@marlun78
Last active October 21, 2020 08:11
Show Gist options
  • Save marlun78/c1ce2b00187808884f49fb6f368daaa0 to your computer and use it in GitHub Desktop.
Save marlun78/c1ce2b00187808884f49fb6f368daaa0 to your computer and use it in GitHub Desktop.
TypeScript flatMap
export const flatMap = <T, U>(
array: T[],
callback: (value: T, index: number, array: T[]) => U
): U[] => {
return Array.prototype.concat(...array.map(callback));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment