>$ npm install @fatcherjs/middleware-form-data
<script src="https://cdn.jsdelivr.net/npm/@fatcherjs/middleware-form-data/dist/index.min.js"></script>
import { fatcher } from 'fatcher';
import { formData } from '@fatcherjs/middleware-form-data';
fatcher('https://foo.bar', {
middlewares: [formData()],
headers: {
'Content-Type': 'multipart/form-data',
},
method: 'POST',
body: {
foo: 'bar',
test: 'a',
},
});