mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +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
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
// # Encode Helper
|
|
//
|
|
// Usage: `{{encode uri}}`
|
|
//
|
|
// Returns URI encoded string
|
|
|
|
const {SafeString} = require('../services/proxy');
|
|
|
|
module.exports = function encode(string, options) {
|
|
const uri = string || options;
|
|
return new SafeString(encodeURIComponent(uri));
|
|
};
|