Code coverage report for master/helper/htmlEntities.js

Statements: 100% (2 / 2)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (2 / 2)      Ignored: none     

All files » master/helper/ » htmlEntities.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20      1                             1  
/*
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;