Skip to content

Instantly share code, notes, and snippets.

@monochromer
Last active January 22, 2022 13:34
Show Gist options
  • Select an option

  • Save monochromer/529756ed2cbc5a06a6ff85cfacbd0249 to your computer and use it in GitHub Desktop.

Select an option

Save monochromer/529756ed2cbc5a06a6ff85cfacbd0249 to your computer and use it in GitHub Desktop.
Serialize `FormData` to JSON
// https://jakearchibald.com/2021/encoding-data-for-post-requests/
function formToObject(formData) {
return Object.fromEntries(
[...new Set(formData.keys())]
.map((key) => [key, formData.getAll(key)]),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment