Skip to content

Instantly share code, notes, and snippets.

@BerkeleyTrue
Created September 18, 2016 18:11
Show Gist options
  • Select an option

  • Save BerkeleyTrue/1d9ea87c03ae7fe051213d134a98ac62 to your computer and use it in GitHub Desktop.

Select an option

Save BerkeleyTrue/1d9ea87c03ae7fe051213d134a98ac62 to your computer and use it in GitHub Desktop.
serialize a form element
export function serializeForm(form) {
const data = [].filter.call(form.elements, node => !!node.name)
.reduce((data, node) => {
data[node.name] = node.value;
return data;
}, {});
return JSON.stringify(data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment