blob: 7bd74cb1116f59a71e475b73592afb66a2bc5532 [file] [log] [blame]
/*
We're explicitly defining the list of entities that might see in escape HTML strings
*/
var htmlEntities = {
nbsp: ' ',
cent: '¢',
pound: '£',
yen: '¥',
euro: '€',
copy: '©',
reg: '®',
lt: '<',
gt: '>',
quot: '"',
amp: '&',
apos: "'"
};
module.exports = htmlEntities;