Gottwik/Enduro

View on GitHub
hbs_helpers/htmlescape.js

Summary

Maintainability
A
0 mins
Test Coverage
// * ———————————————————————————————————————————————————————— * //
// *    htmlescape helper
// *    Usage:
// *        {{htmlescape 'www.example.com?p=escape spaces here'}}
// *
// * ———————————————————————————————————————————————————————— * //
const helper = function () {}

helper.prototype.register = function () {

    enduro.templating_engine.registerHelper('uriencode', function (url) {
        return encodeURI(url)
    })
}

module.exports = new helper()