Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / underscore.string / chars.js
1 var makeString = require('./helper/makeString');
2
3 module.exports = function chars(str) {
4   return makeString(str).split('');
5 };