blob: 4b78d74352554f2b539c6cc203b7df3bd0dc6ce1 [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;