adonis-pdf
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "adonis-pdf", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Create PDF files within Adonis using pdfmake", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
'use strict' | ||
const stream = require('stream') | ||
const PdfPrinter = require('pdfmake/src/printer') | ||
@@ -41,5 +43,7 @@ | ||
create (content) { | ||
create (content, stream) { | ||
if (typeof content === 'object') { | ||
return this.printer.createPdfKitDocument(content) | ||
this.document = this.printer.createPdfKitDocument(content) | ||
this.document.pipe(stream) | ||
this.document.end() | ||
} else { | ||
@@ -46,0 +50,0 @@ throw { status: 'error', message: 'PDF content must be an Object' } |
2112906
121