``` , sanitizeString: function (text) { retur...
# suitecommerce
s
Copy code
,	sanitizeString: function (text)
		{
			return text ? text.replace(/<br>/g, '\n').replace(/</g, '&lt;').replace(/\>/g, '&gt;') : '';
		}
👍 1
✔️ 1