mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
35e3e0708c
- The proxy is not a helper, we want the helpers folder to only include helpers - The proxy is also meant to be the interface to Ghost for the helpers, and we want to enforce that - This is a small step on the way
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
const {SafeString} = require('../services/proxy');
|
|
|
|
module.exports = function concat(...args) {
|
|
const options = args.pop();
|
|
const separator = options.hash.separator || '';
|
|
|
|
return new SafeString(args.join(separator));
|
|
};
|