Skip to content

Instantly share code, notes, and snippets.

@piurafunk
Created March 27, 2019 13:53
Show Gist options
  • Save piurafunk/267b3707b6c49c5ad0bff3088cc87cb0 to your computer and use it in GitHub Desktop.
Save piurafunk/267b3707b6c49c5ad0bff3088cc87cb0 to your computer and use it in GitHub Desktop.
A factory for FormData objects
// Wrapper to easily build a FormData object
FormData.factory = data => Object.keys(data).reduce((p, k) => {p.set(k, data[k]); return p}, new FormData())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment