v0.3.5
🚀 Features
- Add formidable plugins support - by @wobsoriano (13f34)
- Allow access to form via cb - by @wobsoriano (54378)
Plugin example
import { createFileParserMiddleware } from 'h3-formidable'
export default createFileParserMiddleware({
getForm((form) => {
form.use((self, options) => {
// self === this === form
console.log('woohoo, custom plugin');
// do your stuff; check `https://github.com/node-formidable/formidable/tree/master/src/plugins` for inspiration
})
})
})