I\'m using busboy, writing my uploaded file to a buffer and performing some validation on it (width, height and filesize). I can\'t for the life of me figure out how to abo
I was able to access the underlying Dicer parser which has an ignore method which essentially stops uploading the file.
Dicer
ignore
Here's how I did it: busboy._parser.parser._ignore()
busboy._parser.parser._ignore()
It does seem very hackish, but it works and does exactly what I wanted.