UNPKG

@jsxc/jsxc

Version:

Real-time XMPP chat application with video calls, file transfer and encrypted communication

10 lines (7 loc) 257 B
/* jshint node: true */ var Handlebars = require('handlebars-runtime'); module.exports = function(text) { text = Handlebars.Utils.escapeExpression(text); text = text.replace(/(\r\n|\n|\r)/gm, '<br />'); return new Handlebars.SafeString(text); };