Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / underscore.string / helper / escapeRegExp.js
1 var makeString = require('./makeString');
2
3 module.exports = function escapeRegExp(str) {
4   return makeString(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
5 };