Fork Copy var CFormData = (data) => { let fd = new FormData() for (let key in data) { fd.append(key, data[key]) } return fd }