purescript-fetch/test/Test.Effect.Aff.HTTP.Form.js

8 lines
280 B
JavaScript
Raw Permalink Normal View History

2024-11-23 19:49:36 +00:00
export const dummyForm = () => {
const form = new FormData()
form.set('foo', 'bar')
const hi = Buffer.from('hello, world!', 'utf8')
form.set('baz', new Blob([hi.buffer.slice(hi.byteOffset, hi.byteOffset + hi.byteLength)], {type: 'text/plain'}), 'foo.txt')
return form
}