c902d91c81
- This fits more closely, as this service is to so with rendering helpers and small parts - Whereas we want to use "rendering" for things concerned with rendering pages
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
const {SafeString} = require('../services/handlebars');
|
|
|
|
module.exports = function concat(...args) {
|
|
const options = args.pop();
|
|
const separator = options.hash.separator || '';
|
|
|
|
return new SafeString(args.join(separator));
|
|
};
|