Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / underscore.string / surround.js
1 module.exports = function surround(str, wrapper) {
2   return [wrapper, str, wrapper].join('');
3 };