Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / underscore.string / helper / htmlEntities.js
1 /*
2 We're explicitly defining the list of entities that might see in escape HTML strings
3 */
4 var htmlEntities = {
5   nbsp: ' ',
6   cent: '¢',
7   pound: '£',
8   yen: '¥',
9   euro: '€',
10   copy: '©',
11   reg: '®',
12   lt: '<',
13   gt: '>',
14   quot: '"',
15   amp: '&',
16   apos: "'"
17 };
18
19 module.exports = htmlEntities;