Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/ui/bbcode/encoder/src/ |
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/ui/bbcode/encoder/src/encoder.js |
export class BBCodeEncoder { encodeText(source: string): string { return String(source) .replaceAll('&', '&') .replaceAll('[', '[') .replaceAll(']', ']') .replaceAll('\'', ''') .replaceAll('"', '"') .replaceAll('<', '<') .replaceAll('>', '>'); } decodeText(source: string): string { return String(source) .replaceAll('[', '[') .replaceAll(']', ']') .replaceAll(''', '\'') .replaceAll('"', '"') .replaceAll('<', '<') .replaceAll('>', '>') .replaceAll('&', '&'); } encodeAttribute(source: string): string { return this.encodeText(source); } decodeAttribute(source: string): string { return this.decodeText(source); } }