const browser = require('../browser'); module.exports = async ({ path = null, format = 'A4', landscape = false }) => { await browser.start(); const file = await browser.pdf({ path, format, landscape }); return { success: true, action: 'pdf', file }; };