settings_post_response = {
const response = await fetch(
post_url,
{
"async": true,
"crossDomain": true,
"url": "https://amp.pharm.mssm.edu/Enrichr/addList",
"method": "POST",
"processData": false,
"contentType": false,
"mimeType": "multipart/form-data",
"data": JSON.stringify(form)
}
);
return {
ok: response.ok,
body: await response.text()
};
}