I am using a plugin jsPDF which generates PDF and saves it to local file system. Now in jsPDF.js, there is some piece of code which generates pdf data in blob format as:-
Try:
var blob = new Blob([array], {type: "application/pdf"}); var buffer = new Buffer(blob, "binary");