import { IHtmlEngineHelper } from './html-engine-helper.interface'; import * as Handlebars from 'handlebars'; export class BreakCommaHelper implements IHtmlEngineHelper { constructor(private bars) {} public helperFunc(context: any, text: string) { text = this.bars.Utils.escapeExpression(text); text = text.replace(/,/g, ',
'); return new Handlebars.SafeString(text); } }