Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pfftdammitchris/7325f9fc8627885b1318e668962d69e6 to your computer and use it in GitHub Desktop.
Save pfftdammitchris/7325f9fc8627885b1318e668962d69e6 to your computer and use it in GitHub Desktop.
const transform = (transformer, ...args) => {
return args.reduce(
(arr, arg) =>
Array.isArray(arg)
? arr.concat(...arg.map((val) => transformer(val)))
: transformer(arg),
[],
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment