feature(cloudfunc) entities: add ampersand

This commit is contained in:
coderaiser 2014-12-30 07:31:54 -05:00
parent ef34412277
commit fcf758be3c

View file

@ -35,8 +35,9 @@ var Util;
var Entities = {
' ': ' ',
'&lt;': '<',
'&gt' : '>'
'&lt;' : '<',
'&gt' : '>',
'&amp;' : '&'
};
this.encodeEntities = function(str) {