inline-assets
Version:
Inline External Assets of HTML/CSS Files
20 lines (18 loc) • 304 B
JavaScript
/*
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;