2.1.1
Update
- Fix default name for a Blob field (#13)
import FormData from "formdata-node"
import Blob from "fetch-blob"
const fd = new FormData()
const blob = new Blob(["Where's your motivation?"], {type: "text/plain"})
fd.set("file", blob)
fd.get("file").name // "blob"All changes: v2.1.0...v2.1.1