%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/strRight.js |
var makeString = require('./helper/makeString');
module.exports = function strRight(str, sep) {
str = makeString(str);
sep = makeString(sep);
var pos = !sep ? -1 : str.indexOf(sep);
return~ pos ? str.slice(pos + sep.length, str.length) : str;
};