UNPKG

495 BPlain TextView Raw
1import { IHtmlEngineHelper } from './html-engine-helper.interface';
2import * as Handlebars from 'handlebars';
3
4export class ObjectHelper implements IHtmlEngineHelper {
5 public helperFunc(context: any, text: string) {
6 text = JSON.stringify(text);
7 text = text.replace(/{"/, '{<br>&nbsp;&nbsp;&nbsp;&nbsp;"');
8 text = text.replace(/,"/, ',<br>&nbsp;&nbsp;&nbsp;&nbsp;"');
9 text = text.replace(/}$/, '<br>}');
10 return new Handlebars.SafeString(text);
11 }
12}