const path = require('path'); function getDirPath(id) { return `/tmp/pdfer-${id}`; } function getDocPath(id) { return path.join(getDirPath(id), 'doc.tex'); } function getPdfPath(id) { return path.join(getDirPath(id), 'doc.pdf'); } module.exports = { getDirPath, getDocPath, getPdfPath, };