2020-04-08 18:56:37 +03:00
|
|
|
const {SafeString} = require('../services/proxy');
|
2019-07-19 12:59:32 +03:00
|
|
|
|
|
|
|
module.exports = function concat(...args) {
|
|
|
|
const options = args.pop();
|
|
|
|
const separator = options.hash.separator || '';
|
|
|
|
|
|
|
|
return new SafeString(args.join(separator));
|
|
|
|
};
|