Closed LockedOnNone closed 6 years ago
so I'll write my code like this:
const PDFMerge = require('pdf-merge'); const files = [ `*.pdf` ]; //Save as new file PDFMerge(files, {output: `combined.pdf`}) .then((buffer) => { });
so it can support code like this. pdftk *.pdf cat output combined.pdf
pdftk *.pdf cat output combined.pdf
This probably worked before #23. To support this we need to make a deviation here which makes it so that *.pdf continues down the code instead of trying to read the file.
*.pdf
so I'll write my code like this:
so it can support code like this.
pdftk *.pdf cat output combined.pdf