const outdent = require('outdent')({ newline: ' ' }); module.exports = { test: function () { const html = outdent`
Hello, World
`; return html; }, };