mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-02 15:55:08 +03:00
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
|
const {SafeString} = require('./proxy');
|
||
|
|
||
|
module.exports = function concat(...args) {
|
||
|
const options = args.pop();
|
||
|
const separator = options.hash.separator || '';
|
||
|
|
||
|
return new SafeString(args.join(separator));
|
||
|
};
|