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