UNPKG

362 BPlain TextView Raw
1import { IHtmlEngineHelper } from './html-engine-helper.interface';
2
3export class EscapeSimpleQuoteHelper implements IHtmlEngineHelper {
4 public helperFunc(context: any, text: string) {
5 if (!text) {
6 return;
7 }
8 text = text.replace(/'/g, "\\'");
9 text = text.replace(/(\r\n|\n|\r)/gm, '');
10 return text;
11 }
12}