Created
October 10, 2015 21:31
-
-
Save geoffreydhuyvetters/0cd8ebfbac8e7d7f1ac1 to your computer and use it in GitHub Desktop.
build form data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const buildFormData = (form, data={}) => { | |
let fd = form ? new FormData(form) : new FormData(); | |
for(let key in data){ | |
fd.append(key, data[key]); | |
} | |
return fd; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment