Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[yaffs-website] / node_modules / underscore.string / surround.js
1 module.exports = function surround(str, wrapper) {
2   return [wrapper, str, wrapper].join('');
3 };